Skip to main content
GET
https://api.0xarchive.io
/
v1
/
data-quality
/
sla
Get SLA metrics
curl --request GET \
  --url https://api.0xarchive.io/v1/data-quality/sla \
  --header 'X-API-Key: <api-key>'
{
  "period": "<string>",
  "sla_targets": {
    "uptime": 123,
    "data_completeness": 123,
    "api_latency_p99_ms": 123
  },
  "actual": {
    "uptime": 123,
    "data_completeness": {
      "orderbook": 123,
      "fills": 123,
      "funding": 123,
      "overall": 123
    },
    "api_latency_p99_ms": 123
  },
  "incidents_this_period": 123,
  "total_downtime_minutes": 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

year
integer

Year (defaults to current year)

Example:

2026

month
integer

Month 1-12 (defaults to current month)

Required range: 1 <= x <= 12
Example:

1

Response

SLA metrics

SLA compliance response

period
string

Period covered (e.g., '2026-01')

sla_targets
object
actual
object
incidents_this_period
integer
total_downtime_minutes
integer
Last modified on May 20, 2026