Covid Tracking Project
The Covid Tracking Project's frozen US pandemic archive
This is the archived v2 API from The Covid Tracking Project, serving daily US testing, hospitalization, and outcome figures as JSON. Data collection stopped on 7 March 2021, so treat it as a historical dataset rather than a live feed. It's licensed CC BY 4.0 with open CORS.
GET https://api.covidtracking.com/v2/us/daily.json
{
"links": {
"self": "https://api.covidtracking.com/us/daily"
},
"meta": {
"build_time": "2021-06-01T07:03:25.055Z",
"license": "CC-BY-4.0",
"version": "2.0-beta"
}
}curl "https://api.covidtracking.com/v2/us/daily.json"const res = await fetch("https://api.covidtracking.com/v2/us/daily.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.covidtracking.com/v2/us/daily.json")
print(res.json())/v2/us/daily.jsonPROBEDThe Covid Tracking Project's frozen US pandemic archive
/v2V2 — documented GET route.
/v2/1V2 details by ID (example: 1).
/v2?limit=10V2 — documented GET route.
/v2/search?q=testSearch by query parameters.
/v2/V2 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Covid Tracking Project: common questions
Is Covid Tracking Project free to use?
Yes — Covid Tracking Project is a free health & food API. Free tier: Free — no key required (archived dataset). Commercial use is allowed on the free tier.
Does Covid Tracking Project need an API key?
No — Covid Tracking Project needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Covid Tracking Project from the browser?
Yes — Covid Tracking Project returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Covid Tracking Project up right now?
As of our last scheduled check, Covid Tracking Project is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.