# Crawl Web Search API

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

Performs web search and scraping for AI agents, billed per request in USDC via x402 with no auth or subscription required

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-web-search-api-3df45cdf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1S4VbYwO1X24uVKLqm8iy

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 crawl-web-search-api-3df45cdf -d '<json body>'
```

Example prompt: Search the web for the latest headlines about renewable energy policy and give me 5 results.

## When to prefer this

Choose this endpoint when you need live web search or scraping without API keys, subscriptions, or rate-limit agreements — especially in autonomous agent workflows where pay-per-request USDC billing via x402 is preferred over monthly subscription models. Good for ad-hoc lookups where you don't want to manage credentials.

## Known failure modes

- Payment failure if USDC balance is insufficient for x402 transaction
- Empty or irrelevant results if query is too vague
- Query parameter missing returns validation error
- Rate limiting or timeouts for very broad queries
- num parameter out of range may cause unexpected result counts

## 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 search results and/or scraped web content matching the query

## 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/crawl-web-search-api-3df45cdf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
