# SERP Batch Search

> SERP Batch Search is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Runs up to 5 web or news search queries in a single API call, returning ranked title, URL, and snippet per query with locale, freshness, and safesearch controls.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/serp-batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/serp-batch-search-a9696151
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qm-WSmuKrevI8EoPSpzL4

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 serp-batch-search-a9696151
```

Example prompt: Search these 5 topics for me in one shot — 'AI agent frameworks 2025', 'LangChain vs LlamaIndex', 'vector database benchmarks', 'OpenAI GPT-5 release date', and 'Anthropic Claude 3.5 updates' — web mode, US English, top 10 results each, nothing older than a month.

## When to prefer this

Choose this endpoint when an agent needs to run 2–5 independent search queries and wants to minimize API calls and cost — research fan-out, multi-topic summarization, or comparative lookups. It is more cost-efficient than calling the single-query SERP endpoint repeatedly. Prefer the single-query endpoint when only one search is needed, or the metasearch endpoint when cross-engine deduplication matters more than throughput.

## Known failure modes

- More than 5 queries submitted — the API caps at 5 pipe-separated queries
- Invalid region code returns a locale error or falls back to default
- Unsupported engine value for the selected mode (e.g. using brave for news mode) returns an error
- timelimit too restrictive returns sparse or zero results for some queries
- Payment failure (x402) causes 402 response before any search is executed
- Malformed pipe-separated queries string returns a 400 validation error

## How this service works

Bulk web search: up to 5 search queries in a single call, each returning ranked title, URL, and snippet, with the same locale, freshness, and news filters as the single-query web search. One paid call instead of five for research fan-out.

## Output

A response object containing, for each of the submitted queries, a ranked list of up to 25 results — each with a title, URL, and text snippet — grouped by query, along with any applied locale and freshness metadata.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "queries"
     ],
     "properties": {
      "mode": {
       "enum": [
        "web",
        "news"
       ],
       "type": "string",
       "default": "web"
      },
      "engine": {
       "type": "string",
       "default": "auto",
       "description": "search backend: auto (recommended) or yahoo/yandex (web); bing (news)"
      },
      "region": {
       "type": "string",
       "default": "us-en",
       "description": "locale, e.g. us-en, uk-en, de-de"
      },
      "queries": {
       "type": "string",
       "description": "up to 5 search queries separated by '|'"
      },
      "timelimit": {
       "enum": [
        "d",
        "w",
        "m",
        "y"
       ],
       "type": "string",
       "description": "restrict to past day/week/month/year"
      },
      "safesearch": {
       "enum": [
        "on",
        "moderate",
        "off"
       ],
       "type": "string",
       "default": "moderate"
      },
      "num_results": {
       "type": "string",
       "default": "10",
       "description": "max results per query, cap 25"
      }
     }
    }
   },
   "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/serp-batch-search-a9696151/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
