# Agent Search Pro

> Agent Search Pro is a paid API for AI agents from aggregator-beta.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Performs agent-native web searches and synthesizes multi-angle research results, paid per call in USDC on Base via x402.

## Facts

- Endpoint: POST https://aggregator-beta.vercel.app/api/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-search-pro-0086df99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dVPwJiRjZ6dFm8yyi3UVU

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 agent-search-pro-0086df99 -d '<json body>'
```

Example prompt: Search the web for the latest developments in quantum computing and bring back the top 5 results.

## When to prefer this

Choose this endpoint when an AI agent needs live, current web information beyond its training data cutoff, especially for time-sensitive queries, recent news, or multi-source research synthesis. Prefer it over static knowledge bases when freshness matters. It is particularly well-suited for agentic pipelines that require cited, real-world sources and can handle per-call USDC micropayments via x402 on Base.

## Known failure modes

- Empty results array if no matching web content is found for the query
- Payment failure if insufficient USDC balance or x402 handshake fails
- 400 error if query is missing or empty string
- 400 error if num is outside the range 1–10
- Timeout or 5xx if the upstream web search provider is unavailable
- Stale or irrelevant results if the query is too ambiguous

## How this service works

Agent-native web search and multi-angle research synthesis paid per call in USDC on Base.

## Output

Returns a JSON object containing a tier label (e.g. 'standard'), the tool used ('web_search'), and an array of web search results relevant to the query. The results array contains sourced web content suitable for agent consumption and downstream synthesis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "num": {
   "type": "integer",
   "maximum": 10,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tier": "standard",
  "tool": "web_search",
  "results": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-search-pro-0086df99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aggregator-beta.vercel.app](https://www.zero.xyz/host/aggregator-beta.vercel.app/llms.txt)
