Real-time access to all OutRadIX outbreak data via JSON API. Available with Business subscription.
https://www.outradix.com/api/v1
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
List all active outbreaks. Supports filtering and pagination.
diseasestringFilter by disease slug (e.g. hantavirus, h5n1, mpox)countrystringFilter by country (partial match supported)levelstringFilter by threat level: red, amber, graylimitnumberMaximum results (default 100, max 1000)curl -H "x-api-key: orx_your_key" \ "https://www.outradix.com/api/v1/outbreaks?disease=hantavirus&level=red"
{
"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"
}
}Business plan: 10,000 requests per day. Need more? Contact support@outradix.com
401API key required or invalid403No Business subscription429Rate limit exceeded500Server error