# Wayback Machine โ€” Zapi reference > Lookup archived snapshot dari Internet Archive Wayback Machine โ€” find historical version of any URL by date. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/web-tools/wayback - Endpoint catalog: https://zpi.web.id/category/web-tools - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Wayback Machine **Category:** web-tools ยท **Slug:** `wayback` **Detail page:** https://zpi.web.id/api/web-tools/wayback Lookup archived snapshot dari Internet Archive Wayback Machine โ€” find historical version of any URL by date. **Tags:** archive, wayback, snapshot, history ### Snapshot Lookup archived snapshot. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/web-tools:wayback/snapshot` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `url` | string | query | yes | URL lengkap yang ingin dicari snapshot-nya | | `timestamp` | string | query | no | Tanggal target snapshot (YYYYMMDD atau YYYYMMDDhhmmss). Kosongkan untuk snapshot terbaru | **cURL:** ```bash curl "https://api.zpi.web.id/v1/web-tools:wayback/snapshot?url=https%3A%2F%2Fexample.com×tamp=20230101" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/web-tools:wayback/snapshot?url=https%3A%2F%2Fexample.com×tamp=20230101", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/web-tools:wayback/snapshot?url=https%3A%2F%2Fexample.com×tamp=20230101", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "url": "https://example.com", "found": true, "source": "web.archive.org", "snapshot": { "url": "https://web.archive.org/web/20230101000811/https://example.com/", "status": "200", "available": true, "timestamp": "20230101000811", "timestampIso": "2023-01-01T00:08:11.000Z" }, "requestedTimestamp": "20230101" } ``` --- _Generated: 2026-08-02T14:22:51.909Z_