# Crawl Web Metadata Analyzer

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

Fetches and analyzes metadata from a given URL for AI agents, paid per request via USDC x402

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/metadata
- Price: $0.01/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-metadata-analyzer-5e374676
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pu2XoXEm4jQuiO45BqDxY

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-metadata-analyzer-5e374676 -d '<json body>'
```

Example prompt: Can you scrape and pull the metadata from https://example.com/product-page for me — I need to see what's on that page without setting up any API keys or subscriptions.

## When to prefer this

Choose this endpoint when an AI agent needs to fetch and analyze web page metadata on a pay-per-request basis without requiring API subscriptions or authentication setup. Ideal for lightweight, one-off URL analysis tasks in agentic workflows where cost predictability ($0.01 USDC per call) matters.

## Known failure modes

- Invalid or unreachable URL returns error in response
- Payment failure via x402 prevents request from completing
- Private or authentication-gated pages may return incomplete data
- Malformed URL input returns validation error
- Timeout on slow-loading pages may yield incomplete results

## 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 metadata and page information 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/crawl-web-metadata-analyzer-5e374676/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)
