Skip to main content
GET
/
v1
/
stock
/
covid19
/
us
Get COVID-19 US
curl --request GET \
  --url https://api.aries.com/v1/stock/covid19/us \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "state": "California",
      "case": 12711918,
      "death": 112443,
      "updated": "2024-11-18 18:02:03"
    }
  ]
}

Response

Success returns 200 OK with a JSON object containing a data array of state-level entries (e.g. state, case, death, updated). Errors: 401 unauthorized, 404 when no data found, 500 server error.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Response

COVID-19 US data.

data
object[]