# Toolsmith Web History Lookup

> Toolsmith Web History Lookup is a paid API for AI agents from toolcall.click, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves historical web archive snapshots for a given URL or domain, including first/last seen dates and crawl metadata.

## Facts

- Endpoint: GET https://toolcall.click/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/toolsmith-web-history-lookup-a8a1f767
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WgH1388VUT3df7MuulYrm

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 toolsmith-web-history-lookup-a8a1f767
```

Example prompt: Can you pull up the web archive history for stripe.com and show me the first and last time it was seen, plus up to 50 snapshots?

## When to prefer this

Use this endpoint when you need historical web presence data for a URL or domain without setting up an account or API key — ideal for OSINT research, domain age verification, phishing detection, or brand history analysis. Prefer this over direct Wayback Machine API calls when operating in a pay-per-call agent context with USDC micropayments via x402.

## Known failure modes

- Domain or URL has no archive history — returns empty snapshots array
- Invalid or malformed URL input — likely returns a 400-level error
- Domain exists but is very new and has few or no snapshots
- Rate limiting or payment failure via x402 — returns 402 Payment Required
- Limit parameter exceeds 100 — rejected by schema validation

## 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.01 USDC per call, pay via x402, no API key.

## Output

Returns a JSON object with the domain, firstSeen and lastSeen dates, total snapshot count, number of distinct versions, and an array of individual snapshots each containing the archived URL, date, and HTTP status code.

## 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/toolsmith-web-history-lookup-a8a1f767/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
