Google Search API: Give a query, get ranked organic results with title, link, snippet, plu
Google Search API: Give a query, get ranked organic results with title, link, snippet, plus knowledge graph and related searches. $0.005 USDC per call on Base.
5000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-09
updated
Provider
marketplaceforaiagents.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x05e82e03753c7bc99fb24d10a876cce53f24b7b7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"gl": "us",
"hl": "en",
"num": 10,
"q": "x402 protocol"
},
"type": "http"
},
"output": {
"example": {
"organic_results": [
{
"link": "https://example.com/1",
"position": 1,
"snippet": "One result object. Full response shape: /api/public/v1/openapi.json",
"title": "Example Google Search API result"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"gl": {
"description": "Country code for results",
"type": "string"
},
"hl": {
"description": "UI/interface language code",
"type": "string"
},
"location": {
"description": "Localization, e.g. Austin,Texas,United States",
"type": "string"
},
"num": {
"description": "Number of results to return",
"type": "integer"
},
"page": {
"description": "Page number for pagination",
"type": "integer"
},
"q": {
"description": "Search query",
"type": "string"
}
},
"required": [
"q"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://marketplaceforaiagents.com/api/public/v1/google-search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://marketplaceforaiagents.com/api/public/v1/google-search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://marketplaceforaiagents.com/api/public/v1/google-search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12473.json, and this resource appears in /discovery/resources and /discovery/search.