Skip to main content
POST
/
x402
/
web
/
search
Search the web with X402 payment
curl --request POST \
  --url https://api.hyperbrowser.ai/x402/web/search \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "page": 123,
  "maxAgeSeconds": 123,
  "location": {
    "country": "<string>",
    "state": "<string>",
    "city": "<string>"
  },
  "filters": {
    "exactPhrase": true,
    "semanticPhrase": true,
    "excludeTerms": [
      "<string>"
    ],
    "boostTerms": [
      "<string>"
    ],
    "filetype": "pdf",
    "site": "<string>",
    "excludeSite": "<string>",
    "intitle": "<string>",
    "inurl": "<string>"
  }
}
'
{
  "jobId": "<string>",
  "status": "completed",
  "error": "<string>",
  "data": {
    "query": "<string>",
    "results": [
      {
        "title": "<string>",
        "url": "<string>",
        "description": "<string>"
      }
    ]
  }
}

Headers

PAYMENT-SIGNATURE
string

Base64-encoded JSON containing payment proof (x402Version, resource, accepted payment method, and cryptographic payload with signature and payer address)

Body

application/json
query
string
required
page
integer
maxAgeSeconds
integer
location
object
filters
object

Response

Search completed successfully (after valid payment)

jobId
string
required
status
enum<string>
required
Available options:
completed,
failed,
pending,
running,
stopped
error
string | null
data
object