/v1/continents
All continents
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/continents" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/disease-api/v1/continents", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/disease-api/v1/continents");
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/continents",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 6,
"continents": [
{
"cases": 131889132,
"tests": 1325710449,
"active": 2528062,
"deaths": 1695941,
"updated": 1780881454755,
"critical": 6095,
"continent": "North America",
"countries": [
"Anguilla",
"Antigua and Barbuda",
"Aruba",
"Bahamas",
"Barbados",
"Belize",
"Bermuda",
"British Virgin Islands",
"Canada",
"Caribbean Netherlands",
"Cayman Islands",
"Costa Rica",
"Cuba",
"Curaçao",
"Dominica",
"Dominican Republic",
"El Salvador",
"Greenland",
"Grenada",
"Guadeloupe",
"Guatemala",
"Haiti",
"Honduras",
"Jamaica",
"Martinique",
"Mexico",
"Montserrat",
"Nicaragua",
"Panama",
"Saint Kitts and Nevis",
"Saint Lucia",
"Saint Martin",
"Saint Pierre Miquelon",
"Saint Vincent and the Grenadines",
"Sint Maarten",
"St. Barth",
"Trinidad and Tobago",
"Turks and Caicos Islands",
"USA"
],
"recovered": 127665129,
"population": 598140916,
"today_cases": 0,
"today_deaths": 0,
"today_recovered": 350,
"cases_per_million": 220498.43,
"tests_per_million": 2216384.82,
"deaths_per_million": 2835.35
},
{
"cases": 221500265,
"tests": 2404652039,
"active": 14273512,
"deaths": 1553662,
"updated": 1780881454757,
"critical": 14733,
"continent": "Asia",
"countries": [
"Afghanistan",
"Armenia",
"Azerbaijan",
"Bahrain",
"Bangladesh",
"Bhutan",
"Brunei",
"Cambodia",
"China",
"Cyprus",
"Georgia",
"Hong Kong",
"India",
"Indonesia",
"Iran",
"Iraq",
"Israel",
"Japan",
"Jordan
…