# Crawl Archive Lookup

> Crawl Archive Lookup is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves an archived/cached version of a given URL for AI agents, paid per-request via x402 USDC micropayment

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/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/crawl-archive-lookup-a3cf40b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d3UraSPxfBxZ9Hix3uX71

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

Example prompt: Can you find the archived version of https://example.com/some-page for me — I need to see what that page looked like even if it's been taken down?

## When to prefer this

Use this endpoint when you need to retrieve a cached or archived snapshot of a URL — especially when the live page may be unavailable, paywalled, or changed. Prefer this over live scraping when historical content is acceptable and you want a pay-per-request model with no subscription required.

## Known failure modes

- URL not found in any archive — returns success: false with empty data
- Invalid or malformed URL input causes a 400-level error
- No archive exists for the requested URL
- Payment failure via x402 prevents request from completing
- Timeout if the archive source 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 archive was found, and a 'data' object containing the archived page content or metadata 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/crawl-archive-lookup-a3cf40b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
