# x402.orth.sh Google Web Search

> x402.orth.sh Google Web Search is a paid API for AI agents from x402.orth.sh, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Performs a Google Search via Serper and returns organic results, knowledge graph, people also ask, related searches, and sitelinks for a given query

## Facts

- Endpoint: POST https://x402.orth.sh/serper/search
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-orth-sh-google-web-search-81dfcb4c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LrMDTKe5ScfyktEHCyhwG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-orth-sh-google-web-search-81dfcb4c -d '<json body>'
```

Example prompt: Search Google for 'best practices for LLM prompt engineering' and give me the top 10 organic results in English — include any knowledge graph or people also ask sections you find.

## When to prefer this

Use this endpoint when you need general-purpose Google web search results including organic listings, knowledge panels, and related question data. Prefer this over sibling endpoints (news, images, shopping, places) when the query is a broad informational or research query not tied to a specific vertical. Best for fact-finding, entity lookups, and general web research.

## Known failure modes

- Empty or missing 'q' parameter returns a validation error
- Query with no matching results returns empty organic results array
- Invalid country or language code may return unexpected results or an error
- Rate limiting or payment failure returns a 402 payment required error
- Overly broad queries may return low-relevance results

## How this service works

Google Search - returns organic results, knowledge graph, people also ask, related searches, and sitelinks. Use for general web queries, fact-finding, and research.

## Output

Returns a structured JSON object containing: organic search results (title, link, snippet, position), knowledge graph (entity info, attributes), people also ask (questions and answers), related searches, and sitelinks where available.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Search query"
  },
  "cr": {
   "type": "string",
   "description": "Restrict results to country (e.g. countryUS, countryGB, countryDE)"
  },
  "gl": {
   "type": "string",
   "description": "Country code (e.g. us, uk, de)"
  },
  "hl": {
   "type": "string",
   "description": "Language code (e.g. en, es, fr)"
  },
  "lr": {
   "type": "string",
   "description": "Restrict results to language (e.g. lang_en, lang_fr, lang_de)"
  },
  "num": {
   "type": "number",
   "description": "Number of results (default 10, max 100)"
  },
  "tbs": {
   "type": "string",
   "description": "Time filter (qdr:h=past hour, qdr:d=past day, qdr:w=past week, qdr:m=past month, qdr:y=past year)"
  },
  "page": {
   "type": "number",
   "description": "Page number for pagination For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
  },
  "safe": {
   "type": "string",
   "description": "Safe search: \"active\" to filter explicit content, \"off\" to disable"
  },
  "location": {
   "type": "string",
   "description": "Location name for localized results (e.g. \"New York, NY\")"
  },
  "autocorrect": {
   "type": "boolean",
   "description": "Enable autocorrect (default true)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-orth-sh-google-web-search-81dfcb4c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orth.sh](https://www.zero.xyz/host/x402.orth.sh/llms.txt)
