# Web Search via Serper (Google Results)

> Web Search via Serper (Google Results) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns top 10 organic Google search results plus answer box and knowledge graph for a given query, powered by Serper.

## Facts

- Endpoint: GET https://api.x-402.online/v1/search
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-search-via-serper-google-results-c95c53be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r72PNji_VEiJfJubSUR6g

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 web-search-via-serper-google-results-c95c53be
```

Example prompt: Search Google for 'best JavaScript frameworks 2024' and show me the top organic results, answer box, and any knowledge graph info — use English results targeted at the US.

## When to prefer this

Choose this endpoint when you need real, live Google organic search results cheaply — especially when cost matters and you want the top 10 results plus answer box and knowledge graph in one call. It is cheaper than alternatives like Exa /search on the x402 network and delivers genuine Google SERP data via Serper. Prefer it for general web search, quick fact lookups, or when you need structured Google result data with optional locale targeting.

## Known failure modes

- Missing or empty query parameter returns no results or an error
- Invalid gl/hl locale codes may return unexpected regional results
- No answer box or knowledge graph returned if Google does not feature one for the query
- Rate limiting or payment failure if USDC balance is insufficient
- Query returning 0 organic results for very obscure or malformed searches

## How this service works

Web search (Google results via Serper): top 10 organic results + answer box + knowledge graph. Query: ?q=&gl=&hl=

## Output

Returns up to 10 organic Google search results (title, URL, snippet), an answer box if Google surfaces a direct answer, and knowledge graph data if available for the queried entity — all sourced via Serper in real time.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-search-via-serper-google-results-c95c53be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
