/v1/continent
Totals for a continent
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}