The HTTP Archive API exposes a lightweight read-only interface to the project's
snapshot index. Requests are answered as application/json and are
cacheable for up to 300 seconds. The endpoint is rate-limited and intended
for research and non-commercial use.
| Method | Path | Description |
|---|---|---|
GET | /v3/api/status | Service health and build metadata |
GET | /v3/api/lookup | Resolve the closest snapshot for a URL |
GET | /v3/api/snapshots | List snapshots for a given host |
GET | /v3/api/hosts | Search the host index by prefix |
# health check $ curl -sS https://auto.live12db.com/v3/api/status {"status":"ok","version":"3.2.4","region":"eu-central"} # resolve closest snapshot $ curl -sS "https://auto.live12db.com/v3/api/lookup?url=example.org&ts=2023" {"url":"example.org","snapshot":"2023-04-11T08:22:17Z","available":true}