/v1/global
Worldwide totals
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/disease-api/v1/global" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/disease-api/v1/global", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/disease-api/v1/global");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/disease-api/v1/global",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"cases": 704753890,
"scope": "global",
"tests": 7026505313,
"active": 22123398,
"deaths": 7010681,
"updated": 1780881454446,
"critical": 34794,
"recovered": 675619811,
"population": 7944935131,
"today_cases": 0,
"today_deaths": 0,
"today_recovered": 790,
"cases_per_million": 90413,
"tests_per_million": 884400.59,
"deaths_per_million": 899.4
},
"meta": {
"timestamp": "2026-06-08T01:19:56.886Z",
"request_id": "aba17492-39bf-40ee-8733-a00e3cbf33ef"
},
"status": "ok",
"message": "Global totals retrieved successfully",
"success": true
}