# Crawol Web Search API

> Crawol Web Search API is a paid API for AI agents from crawol.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Performs web search queries and returns results for AI agents, paid per request in USDC via x402 protocol

## Facts

- Endpoint: POST https://crawol.vercel.app/api/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawol-web-search-api-19d3e0cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mZWFzEVePQamHs67_RMjp

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 crawol-web-search-api-19d3e0cc -d '<json body>'
```

Example prompt: Search the web for 'latest developments in quantum computing' and return 5 results.

## When to prefer this

Use this endpoint when an AI agent needs on-demand web search without API keys or subscriptions, paying only per request in USDC via x402. Ideal for autonomous agents that need occasional search access without committing to a monthly plan.

## Known failure modes

- Payment not provided or insufficient USDC — 402 Payment Required response
- Missing required 'query' field — validation error
- Malformed request body — 400 Bad Request
- Upstream search provider unavailable — 500 or timeout
- Query returns no results — success true with empty data

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing web search results matching the query, limited to the requested number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "num": {
   "type": "number",
   "description": "Number of results"
  },
  "query": {
   "type": "string",
   "description": "Search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawol-web-search-api-19d3e0cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawol.vercel.app](https://www.zero.xyz/host/crawol.vercel.app/llms.txt)
