Search the live web for current information
Search the live web for current information. Returns fresh structured organic search results with titles, URLs, snippets, domains, and ranks for agent research and retrieval.
10000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-17
updated
Provider
agentwholesale.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x07851F02F4b0e85f18f5EF06a4545B713eAA39Fe",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"country": "US",
"limit": 5,
"query": "latest AI agent payment protocols"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data": {
"country": "US",
"query": "latest AI agent payment protocols",
"results": [
{
"domain": "example.com",
"rank": 1,
"snippet": "A current web result relevant to the query.",
"title": "Example result",
"url": "https://example.com/article"
}
]
},
"meta": {
"product": "web-search",
"retailUsd": 0.01,
"success": true,
"supplier": "dataforseo-google-organic-live"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"country": {
"description": "Optional two-letter country code. Defaults to US.",
"pattern": "^[A-Za-z]{2}$",
"type": "string"
},
"limit": {
"description": "Optional number of organic results. Defaults to 10.",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "Web search query.",
"maxLength": 700,
"minLength": 1,
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://agentwholesale.vercel.app/api/v1/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://agentwholesale.vercel.app/api/v1/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://agentwholesale.vercel.app/api/v1/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/14614.json, and this resource appears in /discovery/resources and /discovery/search.