Skip to main content

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.

Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. Incidents list response

Required Fields

No required fields are declared on this component schema.

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "IncidentsResponse",
  "description": "Incidents list response",
  "type": "object",
  "properties": {
    "incidents": {
      "type": "array",
      "items": {
        "description": "Data quality incident",
        "type": "object",
        "properties": {
          "data_types": {
            "description": "Affected data types",
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "duration_minutes": {
            "type": "integer",
            "nullable": true
          },
          "exchange": {
            "description": "Affected exchange",
            "type": "string",
            "nullable": true
          },
          "id": {
            "description": "Unique incident ID",
            "type": "string"
          },
          "records_affected": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "records_recovered": {
            "type": "integer",
            "format": "int64",
            "nullable": true
          },
          "resolution": {
            "type": "string",
            "nullable": true
          },
          "resolved_at": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "root_cause": {
            "type": "string",
            "nullable": true
          },
          "severity": {
            "type": "string",
            "enum": [
              "minor",
              "major",
              "critical"
            ]
          },
          "started_at": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string",
            "enum": [
              "open",
              "investigating",
              "identified",
              "monitoring",
              "resolved"
            ]
          },
          "symbols_affected": {
            "description": "Affected symbols",
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "title": {
            "type": "string"
          }
        }
      }
    },
    "pagination": {
      "description": "Pagination info",
      "type": "object",
      "properties": {
        "limit": {
          "description": "Page size limit",
          "type": "integer"
        },
        "offset": {
          "description": "Current offset",
          "type": "integer"
        },
        "total": {
          "description": "Total number of items",
          "type": "integer"
        }
      }
    }
  }
}

Referenced By

Last modified on May 18, 2026