● REST API · v1

OutRadIX API

Real-time access to all OutRadIX outbreak data via JSON API. Available with Business subscription.

🔑 Get your API key
Subscribe to the Business plan to receive a unique API key. Keys are generated automatically after subscription.
Get API access →

Base URL

https://www.outradix.com/api/v1

Authentication

Pass your API key via the x-api-key header:

curl -H "x-api-key: orx_your_key_here" \
  https://www.outradix.com/api/v1/outbreaks

GET /outbreaks

List all active outbreaks. Supports filtering and pagination.

Query Parameters
diseasestringFilter by disease slug (e.g. hantavirus, h5n1, mpox)
countrystringFilter by country (partial match supported)
levelstringFilter by threat level: red, amber, gray
limitnumberMaximum results (default 100, max 1000)
Example Request
curl -H "x-api-key: orx_your_key" \
  "https://www.outradix.com/api/v1/outbreaks?disease=hantavirus&level=red"
Example Response
{
  "success": true,
  "count": 3,
  "data": [
    {
      "id": "uuid",
      "disease_slug": "hantavirus",
      "disease": "Hantavirus (Andes)",
      "country": "International",
      "region": "MV Hondius cruise ship",
      "lat": 35.2,
      "lng": -45.8,
      "cases": 8,
      "deaths": 3,
      "level": "red",
      "summary": "Hantavirus outbreak aboard...",
      "risk_analysis": "Travelers on MV Hondius...",
      "source_url": "https://www.who.int/...",
      "source_name": "WHO DON",
      "data_as_of": "2026-05-08",
      "updated_at": "2026-05-19T16:13:12Z"
    }
  ],
  "meta": {
    "version": "1.0",
    "generated_at": "2026-05-20T00:00:00Z"
  }
}

Rate Limits

Business plan: 10,000 requests per day. Need more? Contact support@outradix.com

Error Codes

401API key required or invalid
403No Business subscription
429Rate limit exceeded
500Server error
OutRadIX
LIVE · WHO · CDC · ECDC · PAHO
© 2026 OutRadIX — Not medical advice. Data from WHO, CDC, ECDC, PAHO.