# x402.orthogonal.com Google Search (Serper)

> x402.orthogonal.com Google Search (Serper) is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Performs a Google Search and returns organic results, knowledge graph, People Also Ask, related searches, and sitelinks for a given query.

## Facts

- Endpoint: POST https://x402.orthogonal.com/serper/search
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-orthogonal-com-google-search-serper-d807ff7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SKFM2XP2OUSmimDhTgI64

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-orthogonal-com-google-search-serper-d807ff7e -d '<json body>'
```

Example prompt: Search Google for 'best open source LLMs 2024' and give me the top 10 organic results in English, filtering to results from the past month.

## When to prefer this

Choose this endpoint when you need broad Google web search results including organic links, knowledge graph summaries, and PAA boxes — especially when you want localization, language filtering, time-bounded results, or pagination. Prefer over specialized search endpoints (Places, Shopping, Maps) when the query is general-purpose or research-oriented rather than local business, product, or map-specific.

## Known failure modes

- Empty or malformed query returns an error or zero results
- Unsupported country/language code returns an error or falls back to defaults
- Requesting more than 100 results returns a validation error
- Time filter string incorrectly formatted returns unexpected results
- Payment failure (x402) prevents the request from being processed

## 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 response containing organic search results (title, link, snippet, position), knowledge graph data (entity name, description, attributes), People Also Ask questions and answers, related searches, and sitelinks where applicable.

## 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-orthogonal-com-google-search-serper-d807ff7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
