Skip to main content
GET
https://api.0xarchive.io
/
v1
/
data-quality
/
incidents
List incidents
curl --request GET \
  --url https://api.0xarchive.io/v1/data-quality/incidents \
  --header 'X-API-Key: <api-key>'
{
  "incidents": [
    {
      "id": "<string>",
      "exchange": "<string>",
      "data_types": [
        "<string>"
      ],
      "symbols_affected": [
        "<string>"
      ],
      "started_at": "2023-11-07T05:31:56Z",
      "resolved_at": "2023-11-07T05:31:56Z",
      "duration_minutes": 123,
      "title": "<string>",
      "description": "<string>",
      "root_cause": "<string>",
      "resolution": "<string>",
      "records_affected": 123,
      "records_recovered": 123
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours at https://www.0xarchive.io/dashboard/

Query Parameters

status
enum<string>

Filter by incident status

Available options:
open,
investigating,
identified,
monitoring,
resolved
exchange
string

Filter by exchange

since
integer<int64>

Only show incidents starting after this timestamp (Unix ms)

limit
integer
default:20

Maximum results per page (default: 20, max: 100)

Required range: x <= 100
offset
integer
default:0

Pagination offset

Response

List of incidents

Incidents list response

incidents
object[]
pagination
object

Pagination info

Last modified on May 20, 2026