Covid-19 JHU CSSE API
Overview
The Covid-19 JHU CSSE API is a community-built REST API that exposes Johns Hopkins University's COVID-19 dataset in an easy-to-use JSON format. It provides global and country-level case counts, deaths, and recoveries without requiring any API key. No authentication is needed, making it one of the simplest COVID-19 APIs to start with.
Beginner Tip
Start with the /confirmed endpoint to get a quick sense of the data structure, then explore /deaths and /recovered for full pandemic statistics — all without any authentication.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Covid-19 JHU CSSE",
"description": "Open-source API for exploring Covid19 cases based on JHU CSSE",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
countryRegion Name of the country or region. confirmed Total cumulative confirmed COVID-19 cases. deaths Total cumulative COVID-19 deaths. recovered Total cumulative recovered cases. active Active cases calculated as confirmed minus deaths and recovered. lastUpdate ISO 8601 timestamp of the last data update. Implementation Example
const url = "https://nuttaphat.com/covid19-api/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Coronavirus
This Coronavirus API provides the latest global Covid-19 case counts, deaths, and recoveries aggregated from public health sources.
Coronavirus in the UK
The Coronavirus in the UK API provides official UK Government data on Covid-19 cases, deaths, and vaccinations broken down by region and nation.
Covid Tracking Project
⭐ Beginner's PickThe Covid Tracking Project API provides historical US Covid-19 data including tests, hospitalizations, and deaths at the state and national level.
Covid-19
Covid-19 provides programmatic access to covid 19 spread, infection and recovery via REST API.
Covid-19
⭐ Beginner's PickThe Covid-19 API by M-Media Group provides daily case counts, deaths, and recoveries for every country in the world.