/covid19-us-api

US States API of confirmed cases and deaths

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Transforms data from https://github.com/nytimes/covid-19-data into json. Available at https://energee.github.io/covid19-us-api/states.json.

The json contains the number of COVID-19 confirmed cases and deaths for every state starting on January 21st. Note: there are no entries for states on days that have 0 confirmed and 0 dead:

"Washington": [
  {
    "date": "2020-01-21",
    "confirmed": "1",
    "deaths": "0"
  },
  {
    "date": "2020-01-22",
    "confirmed": "1",
    "deaths": "0"
  }
]

Example:

fetch("https://energee.github.io/covid19-us-api/states.json")
  .then(response => response.json())
  .then(data => {
    data["Pennsylvania"].forEach(({ date, confirmed, deaths }) =>
      console.log(`${date} active cases: ${confirmed} deaths: ${deaths}`)
    );
  });