# Cravvol Web Extraction API

> Cravvol Web Extraction API is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Extracts and scrapes content from a given URL, returning structured data, with pay-per-request pricing via x402 USDC

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/extract
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvol-web-extraction-api-04b98f8f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_06UDDFUi_YnrTrc6lXken

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-extraction-api-04b98f8f -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/article and give me the extracted text and data from that page?

## When to prefer this

Choose this endpoint when you need frictionless, no-signup web scraping on a pay-per-use basis (0.05 USDC via x402) — ideal for AI agents that need to fetch content from arbitrary URLs without managing API keys or subscriptions. Best for single-URL extraction tasks where cost predictability and minimal setup matter.

## Known failure modes

- URL is unreachable or returns a non-200 status — success:false returned
- URL is malformed or missing — validation error
- Payment not completed via x402 — request blocked before processing
- Target site blocks scrapers or requires JavaScript rendering — partial or empty data returned
- Timeout if target page is slow to respond

## 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 indicating whether the extraction worked, and a 'data' object containing the structured content extracted from the target URL — typically text, metadata, and page elements.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to extract from"
  }
 }
}
```

## 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-extraction-api-04b98f8f/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)
