Catalog/web-search

Web

Web search API

Search the web and get ranked results (title, URL, snippet) for a query — the core 'find information' primitive every agent needs. Answers 'search the web for X', 'find pages about Y', 'what does the web say about Z', 'look up W online'. Backed by SearXNG or Brave when configured, with a keyless fallback so it always responds.

Price$0.01per request
MethodPOST
Route/v1/web/search
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache300s public
websearchweb-searchserpresearchlookupfindinternetgoogle
API URLhttps://x402.hexl.dev/v1/web/search
Integration docs
Example request
{
  "query": "x402 payment protocol",
  "limit": 3
}
Example response
{
  "query": "x402 payment protocol",
  "count": 3,
  "results": [
    {
      "title": "x402 — pay-per-call HTTP",
      "url": "https://example.com",
      "snippet": "An open protocol for agent payments over HTTP 402…"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "examples": [
        "x402 payment protocol"
      ]
    },
    "limit": {
      "type": "number",
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}