# citable.run SERP

> citable.run SERP is a paid API for AI agents from citable.run, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns raw Google search results including organic listings, People Also Ask boxes, and related searches for a given keyword.

## Facts

- Endpoint: GET https://citable.run/v1/serp
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/citable-run-serp-414b57bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EhoOMnUkgT7Iz4HuJ6OP7

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 citable-run-serp-414b57bc
```

Example prompt: Search Google for 'best project management software for remote teams' and give me the organic results, People Also Ask questions, and related searches — use US results in English, show me 20 results.

## When to prefer this

Use this endpoint when you need raw, structured Google SERP data — including organic results, PAA boxes, and related searches — without standing up your own scraping infrastructure. Prefer it over general web-scraping tools when you specifically need Google results in a clean structured format, or over SEO platform APIs when you need live, real-time SERP snapshots rather than historical keyword databases. Well-suited for content strategy research, competitor monitoring, and feeding downstream SEO analysis pipelines.

## Known failure modes

- Missing required 'keyword' parameter returns a validation error
- Keyword exceeding 120 characters is rejected
- Invalid country code (gl) or language code (hl) may return unexpected results or an error
- num parameter outside 10–50 range may be rejected or clamped
- Payment failure (insufficient USDC balance) blocks the request
- Google rate-limiting or blocking may cause upstream failures
- Empty result sets returned for very obscure or misspelled queries

## How this service works

The raw Google results page: organic, People-Also-Ask, related searches.

## Output

A structured representation of the Google SERP for the given keyword, including: a list of organic results (title, URL, snippet), People Also Ask question-answer pairs, and related search queries. Country and language settings influence which regional Google results are returned.

## 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",
     "required": [
      "keyword"
     ],
     "properties": {
      "gl": {
       "type": "string",
       "description": "country code, default us"
      },
      "hl": {
       "type": "string",
       "description": "language code, default en"
      },
      "num": {
       "type": "string",
       "description": "results depth, 10–50 (default 10)"
      },
      "keyword": {
       "type": "string",
       "description": "search query (1–120 chars)"
      }
     }
    }
   },
   "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/citable-run-serp-414b57bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from citable.run](https://www.zero.xyz/host/citable.run/llms.txt)
