# Wayback Machine Website History Lookup

> Wayback Machine Website History Lookup is a paid API for AI agents from toolsmith-api.dassad10.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves archived history of any website from the Internet Archive Wayback Machine, including first/last seen dates, total snapshots, distinct versions, and a monthly snapshot timeline.

## Facts

- Endpoint: GET https://toolsmith-api.dassad10.workers.dev/t/web/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wayback-machine-website-history-lookup-2f565ba9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3RLSnpS18tILK_gnTKHcf

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-machine-website-history-lookup-2f565ba9
```

Example prompt: Can you pull the full Wayback Machine history for shopify.com — I want to know when it first appeared online, how many snapshots exist, and a monthly timeline of the last 50 archived versions?

## When to prefer this

Use this endpoint when you need structured historical archive data about a website — especially first/last appearance dates, version count, and a monthly snapshot timeline — sourced directly from the Internet Archive Wayback Machine. Ideal for domain due diligence, brand history research, competitive intelligence, or change tracking. Prefer this over manual Wayback Machine browsing when you need machine-readable JSON output without an API key.

## Known failure modes

- URL not found in Wayback Machine archive — returns empty or zero snapshots
- Invalid URL format — query param missing or malformed
- Limit parameter out of range (must be 1–100) — validation error
- Payment failure via x402 — call not processed
- Timeout if Wayback Machine CDX API is slow to respond
- Private or robots.txt-excluded domains may have limited or no snapshots

## How this service works

The archived history of any website from the Internet Archive Wayback Machine: first-seen date, last-seen date, total snapshots, how many distinct versions the page went through, and a timeline of snapshot links (one per month). Great for domain due-diligence, brand history and change tracking. JSON response. $0.02 USDC per call, pay via x402, no API key.

## Output

A JSON object containing the website's first-seen date, last-seen date, total snapshot count, number of distinct versions, and a chronological timeline of snapshot links (one per month, up to the requested limit).

## 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 or domain to look up"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Max snapshots, default 25"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "stripe.com",
  "lastSeen": "2026-07-14",
  "firstSeen": "1996-12-18",
  "snapshots": [
   {
    "url": "https://web.archive.org/web/2015.../",
    "date": "2015-12-31",
    "status": "200"
   }
  ],
  "totalSnapshots": 4200,
  "distinctVersions": 380
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wayback-machine-website-history-lookup-2f565ba9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolsmith-api.dassad10.workers.dev](https://www.zero.xyz/host/toolsmith-api.dassad10.workers.dev/llms.txt)
