Skip to content

LilySu/nyc-health-API

Repository files navigation

API for accessing Covid-19 Data from NYC Health

Usage

Routes

Example of boro

Definition

GET /boro

Response
[
{
BOROUGH_GROUP: "The Bronx",
COVID_CASE_COUNT: 31130,
COVID_CASE_RATE: 2115.28
},
{
BOROUGH_GROUP: "Brooklyn",
COVID_CASE_COUNT: 36699,
COVID_CASE_RATE: 1352.06
},
{
BOROUGH_GROUP: "Manhattan",
COVID_CASE_COUNT: 17495,
COVID_CASE_RATE: 927
},
{
BOROUGH_GROUP: "Queens",
COVID_CASE_COUNT: 42637,
COVID_CASE_RATE: 1700.58
},
{
BOROUGH_GROUP: "Staten Island",
COVID_CASE_COUNT: 10405,
COVID_CASE_RATE: 2075.01
},
{
BOROUGH_GROUP: "Citywide",
COVID_CASE_COUNT: 138435,
COVID_CASE_RATE: 0
}
]

This project is licensed under the terms of the MIT license.