# Cravvoul Web Extract

> Cravvoul Web Extract is a paid API for AI agents from cravvoul.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches and extracts content from a given URL, returning structured data, with pay-per-request billing via x402 USDC — no API key required.

## Facts

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

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 cravvoul-web-extract-f3281f3d -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/article and pull out all the information on that page for me?

## When to prefer this

Choose this endpoint when you need frictionless, no-signup web content extraction billed per-request in USDC via x402. Ideal for AI agents that need occasional web access without managing API credentials or subscriptions, and where the cost per call ($0.05 USDC) is acceptable for the use case.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — success: false
- URL is malformed or missing — validation error
- Target site blocks scraping (bot detection, Cloudflare, etc.) — success: false or incomplete data
- Payment via x402 fails — request blocked before execution
- Timeout if target page is very slow to load

## 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 the extracted content from the target URL. The shape of 'data' may vary depending on the page structure.

## 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/cravvoul-web-extract-f3281f3d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvoul.vercel.app](https://www.zero.xyz/host/cravvoul.vercel.app/llms.txt)
