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.
Get a specific incident by ID.
| Field | Value |
|---|
| Method | GET |
| Path | /v1/data-quality/incidents/{id} |
| operationId | getIncident |
| Tag | Data Quality |
| Family | Data Quality |
| Deprecated or legacy | no |
Request Parameters
Path Parameters
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident path parameters",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"description": "Incident ID",
"type": "string",
"x-parameter-location": "path"
}
}
}
Response Contracts
Status 200
Incident details
application/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 200",
"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"
}
}
}
Status 401
Authentication required
application/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 401",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
}
}
OpenAPI example
{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}
Status 404
Resource not found
application/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 404",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
}
}
}
OpenAPI example
{
"code": 404,
"error": "Resource not found"
}