Skip to main content
GET
/
v1
/
stock
/
covid19
/
us
COVID-19 US
curl --request GET \
  --url https://api.aries.com/v1/stock/covid19/us \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "case": 12711918,
      "death": 112443,
      "state": "California",
      "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

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

data
object[]