# Vibes-Coded Wayback Snapshot Lookup

> Vibes-Coded Wayback Snapshot Lookup is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Checks the Wayback Machine (Internet Archive) for the most recent archived snapshot of a given URL and returns its availability, timestamp, and direct snapshot link.

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/wayback-snapshot
- 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/vibes-coded-wayback-snapshot-lookup-05d4effc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7zqqv798IR751GhvEI-Ip

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 vibes-coded-wayback-snapshot-lookup-05d4effc -d '<json body>'
```

Example prompt: Can you check if https://example.com has been archived on the Wayback Machine and give me the link to the most recent snapshot?

## When to prefer this

Use this endpoint when an agent needs to verify whether a URL has been archived, retrieve a historical snapshot link for a broken or deleted page, or confirm a website's past existence — all at $0.01 USDC per call via x402. Prefer this over manual Wayback Machine queries when operating in an automated agent pipeline that requires programmatic access to archive availability.

## Known failure modes

- URL has never been crawled by the Wayback Machine — returns available: false with no snapshot_url
- Malformed or unreachable URL input — may return an error or empty result
- Wayback Machine API is temporarily unavailable — upstream timeout or 5xx error
- Payment not satisfied — HTTP 402 returned before lookup is processed

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

Returns a JSON object indicating whether a Wayback Machine snapshot is available for the given URL, the timestamp of the most recent archived capture, and the full direct URL to that snapshot on web.archive.org, along with the HTTP status of the archived page.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "url": "https://example.com",
  "status": "200",
  "resource": "wayback-snapshot",
  "available": true,
  "timestamp": "20200101000000",
  "snapshot_url": "https://web.archive.org/web/20200101000000/https://example.com/"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-wayback-snapshot-lookup-05d4effc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
