# Cravvol Archive Lookup

> Cravvol Archive Lookup is a paid API for AI agents from cravvol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves a cached or archived version of a given URL via pay-per-request web access

## Facts

- Endpoint: POST https://cravvol.vercel.app/api/archive
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cravvol-archive-lookup-fbf7e674
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kXMDnZF6i41atPo2xb4h-

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-archive-lookup-fbf7e674 -d '<json body>'
```

Example prompt: Can you find and retrieve an archived or cached version of https://example.com/some-article — I want to see what it looked like even if the live page is gone?

## When to prefer this

Choose this endpoint when you need to retrieve a cached or archived snapshot of a specific URL without setting up authentication or subscriptions, and you are willing to pay $0.02 USDC per request via x402. Ideal for agents needing lightweight, on-demand archive lookups with no API key overhead.

## Known failure modes

- No archive found for the given URL — success: false returned
- Invalid or malformed URL input — request rejected
- URL is inaccessible or has never been archived — empty data returned
- Payment failure via x402 — request not processed
- Vercel cold-start timeout on first request — slow 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 archived or cached content found for the requested URL.

## Request schema (JSON Schema)

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

## 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-archive-lookup-fbf7e674/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)
