# Internet Archive Wayback Machine Snapshot Lookup

> Internet Archive Wayback Machine Snapshot Lookup is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Queries the Internet Archive Wayback Machine for historical snapshots of any URL, returning the latest snapshot, first capture, total count, and recent snapshot links.

## Facts

- Endpoint: GET https://api.x402node.dev/web/archive
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-27e837ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yq0Bd7gJ2quzGkK2FSEsX

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 api-x402node-dev-27e837ce
```

Example prompt: Can you check if the Wayback Machine has any archived snapshots of https://example.com — I want to know when it was first captured, what the most recent snapshot is, and how many total snapshots exist?

## When to prefer this

Use this endpoint when you need to recover content from a dead or changed URL, verify historical existence of a web page, research content provenance, or retrieve archive snapshot metadata from the Internet Archive's Wayback Machine without needing a direct Wayback Machine API key.

## Known failure modes

- URL has never been archived — returns zero count and no snapshot links
- Malformed or missing URL parameter — returns 400-level error
- Wayback Machine API unavailable or rate-limited — returns upstream error or timeout
- URL scheme not supported (e.g. non-HTTP) — may return empty or error response

## How this service works

Query Internet Archive Wayback Machine for snapshots of any URL. Returns latest snapshot, first capture in sample, total count, and recent snapshot links. Built for content provenance, dead-link recovery, and historical research. Use url param Accepts payment on Base or Solana — either network works.

## Output

Returns the latest snapshot URL and timestamp, the first capture in the sample, the total number of snapshots recorded, and a list of recent snapshot links for the queried URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string",
       "description": "Target URL (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-27e837ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
