/v1/continent
Totals for a continent
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/continent" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/disease-api/v1/continent", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/disease-api/v1/continent");
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/continent",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"continent": {
"cases": 253406198,
"tests": 2848046702,
"active": 2550270,
"deaths": 2101824,
"updated": 1780881454760,
"critical": 4453,
"continent": "Europe",
"countries": [
"Albania",
"Andorra",
"Austria",
"Belarus",
"Belgium",
"Bosnia",
"Bulgaria",
"Channel Islands",
"Croatia",
"Czechia",
"Denmark",
"Estonia",
"Faroe Islands",
"Finland",
"France",
"Germany",
"Gibraltar",
"Greece",
"Holy See (Vatican City State)",
"Hungary",
"Iceland",
"Ireland",
"Isle of Man",
"Italy",
"Latvia",
"Liechtenstein",
"Lithuania",
"Luxembourg",
"Macedonia",
"Malta",
"Moldova",
"Monaco",
"Montenegro",
"Netherlands",
"Norway",
"Poland",
"Portugal",
"Romania",
"Russia",
"San Marino",
"Serbia",
"Slovakia",
"Slovenia",
"Spain",
"Sweden",
"Switzerland",
"UK",
"Ukraine"
],
"recovered": 248754104,
"population": 747543837,
"today_cases": 0,
"today_deaths": 0,
"today_recovered": 474,
"cases_per_million": 338985.07,
"tests_per_million": 3809872.49,
"deaths_per_million": 2811.64
}
},
"meta": {
"timestamp": "2026-06-08T01:19:56.420Z",
"request_id": "5c791d15-26c6-4b01-a50a-54cdb10a6b27"
},
"status": "ok",
"message": "Continent retrieved successfully",
"success": true
}