Search a specific public website or domain through Decodo Google results by send
Search a specific public website or domain through Decodo Google results by sending a query with a site: filter. The response includes ranked titles, URLs, snippets, and domains. If primary search is quota-limited, a marked GDELT fallback can return recent news-indexed pages from that domain with recency capped at 168 hours. Use it as a site search API, domain search tool, website search endpoint, or scoped web search for agents.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://x402.agentutility.ai/search-site
| Category | Search and research |
|---|---|
| Provider host | x402.agentutility.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 161 from 3 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"num_results": 10,
"query": "site:agentutility.ai image endpoints"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"include_text": {
"description": "Accepted for compatibility. This route always returns ranked result metadata with include_text: false; use scrape-to-json for page text.",
"type": "boolean"
},
"limit": {
"description": "Alias for num_results. If both are supplied, num_results wins.",
"type": "number"
},
"num_results": {
"description": "Number of results to return. Default 10, max 20.",
"type": "number"
},
"query": {
"description": "Search query. Include site:example.com to search within a site/domain.",
"type": "string"
},
"recency": {
"description": "Optional freshness filter. Default 'any'.",
"enum": [
"day",
"week",
"month",
"year",
"any"
],
"type": "string"
}
},
"required": [
"query"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"degraded": {
"type": "boolean"
},
"include_text": {
"type": "boolean"
},
"note": {
"type": "string"
},
"query": {
"type": "string"
},
"results": {
"items": {
"properties": {
"domain": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"source": {
"type": "string"
},
"source_url": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}