# AgentUtility Google Search (SERP API)

> AgentUtility Google Search (SERP API) is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns ranked Google organic search results — title, URL, snippet, and domain — for any query, with an optional recency filter, via Decodo Google Search.

## Facts

- Endpoint: POST https://x402.agentutility.ai/google-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-google-search-serp-api-3f805265
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rKr79w6hP4uMsHIO-Xh8c

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 agentutility-google-search-serp-api-3f805265 -d '<json body>'
```

Example prompt: Search Google for 'open source LLM fine-tuning tutorials 2024' and give me the top 10 results — titles, URLs, and snippets — filtered to the past year.

## When to prefer this

Use this endpoint when you need ranked Google organic SERP results — titles, URLs, snippets, and domains — for source discovery or research. Prefer this over answer-web (which synthesizes cited answers) when you want raw URLs and snippets to process yourself, and over scrape-to-json when you want a list of results rather than the full text of a specific page. Best for agent pipelines that need to identify which pages exist on a topic before deciding what to fetch.

## Known failure modes

- Query returns zero results for highly niche or nonsensical queries
- Recency filter too restrictive yields empty result set
- Rate limiting or payment failure (x402 USDC settlement) blocks the request
- Malformed query string causes API rejection
- Results may not reflect real-time indexing for very recent events

## How this service works

Ranked Google organic results for any query — title, URL, snippet, domain, and an optional recency filter, via Decodo Google Search. A Google Search / SERP API for agent source discovery; for cited synthesis use answer-web, for page extraction use scrape-to-json.

## Output

An ordered list of organic Google search results, each containing the page title, URL, snippet/description text, and root domain. Results reflect real Google SERP rankings and can be filtered by recency (e.g. past day, week, month, year).

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "best x402 endpoints",
  "source": "Decodo Google Search",
  "results": [
   {
    "url": "https://example.com",
    "title": "Example",
    "domain": "example.com"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-google-search-serp-api-3f805265/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
