Covid Tracking Project

The Covid Tracking Project's frozen US pandemic archive

🩺 Health & FoodUNMONITOREDchecked 14 min ago
AUTH NONECORS AGENT HTTPS COMMERCIAL

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /v2/us/daily.json has been probed
GET/v2/us/daily.jsonPROBED

The Covid Tracking Project's frozen US pandemic archive

GET/v2

V2 — documented GET route.

GET/v2/1

V2 details by ID (example: 1).

GET/v2?limit=10

V2 — documented GET route.

GET/v2/search?q=test

Search by query parameters.

GET/v2/

V2 — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.