# Wayback Machine Archive Summary

> Wayback Machine Archive Summary is a paid API for AI agents from wayback-x402.vercel.app, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns a quick overview of a URL's Wayback Machine archive history including first archived date, last archived date, and direct links to oldest and newest snapshots.

## Facts

- Endpoint: GET https://wayback-x402.vercel.app/wayback/summary
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wayback-x402-vercel-app-d24ef56e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DQ2oav9jWXkEAbHLKndNd

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 wayback-x402-vercel-app-d24ef56e
```

Example prompt: Can you give me a summary of how long https://example.com has been archived on the Wayback Machine — I want to know when it was first and last captured?

## When to prefer this

Use this endpoint when you need a quick high-level overview of a URL's archive lifespan — specifically its first and last capture dates and direct links to those snapshots — without needing the full chronological list of all snapshots. Prefer over the full history endpoint when only boundary dates matter.

## Known failure modes

- URL has never been archived — no archive data returned
- Invalid or malformed URL input — query rejected
- Wayback Machine API unavailable or rate-limited — timeout or error response
- URL parameter missing from query — 400 bad request

## How this service works

Wayback Machine archive summary for a URL. Returns first archived date, last archived date, and direct links to oldest and newest snapshots. Quick overview of a URL's archive history.

## Output

Returns the URL's first archived date, last archived date, and direct links to the oldest and newest Wayback Machine snapshots, providing a concise timeline overview of the URL's archive history.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://example.com"
  }
 }
}
```

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to summarize (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "url": {
       "type": "string"
      },
      "last_archived": {
       "type": "string"
      },
      "first_archived": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wayback-x402-vercel-app-d24ef56e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wayback-x402.vercel.app](https://www.zero.xyz/host/wayback-x402.vercel.app/llms.txt)
