# Cravvol Web Search & Scrape API

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

Performs web searches and scraping for AI agents, returning results on a pay-per-request basis via x402/USDC with no API key or subscription required.

## Facts

- Endpoint: POST https://cravvol.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/cravvol-web-search-scrape-api-84c88fe8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XW_PKqLqJOJcTM6MvQeky

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 cravvol-web-search-scrape-api-84c88fe8 -d '<json body>'
```

Example prompt: Search the web for the latest news about OpenAI's newest model releases and return 5 results.

## When to prefer this

Choose this endpoint when you need web search or scraping capabilities without committing to an API key or monthly subscription — ideal for AI agents that need occasional, on-demand web access and can pay per request in USDC via x402. Good fit for lightweight, serverless agent pipelines that need live web data.

## Known failure modes

- Payment not provided or insufficient USDC — 402 Payment Required response
- Missing required 'query' field — validation error
- Query returns no results — empty data object with success: true
- Rate limiting or server overload on the Vercel deployment — 500 or timeout
- Invalid 'num' parameter type — schema validation failure

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing web search or scraping results matching the query, including URLs, titles, and/or page content depending on the query type.

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