# Cravvol Web Crawl & Metadata Extraction

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

Fetches and analyzes a given URL, returning scraped web content and metadata for AI agents via pay-per-request x402 payments in USDC.

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/metadata
- Price: $0.01/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-crawl-metadata-extraction-bc0dcf7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1TvDEGSM-lt3U5865diwk

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-crawl-metadata-extraction-bc0dcf7e -d '<json body>'
```

Example prompt: Can you scrape this page for me and pull back whatever metadata and content you find: https://example.com/some-article?

## When to prefer this

Choose this endpoint when you need frictionless, on-demand web scraping with no API key or subscription setup — just a URL and a USDC micropayment. Ideal for AI agents that need to fetch page content or metadata opportunistically without managing credentials.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false with error detail
- Invalid or malformed URL provided — likely a 4xx validation error
- Payment not fulfilled via x402 — 402 Payment Required response before content is returned
- Target site blocks scrapers — may return empty or partial data
- Timeout on slow-loading pages — partial or failed response

## 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 scraped metadata and content extracted from the provided URL.

## Request schema (JSON Schema)

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

## 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-crawl-metadata-extraction-bc0dcf7e/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)
