This feature is depreciated, and individual-level fatality data is no longer updated; it remains available to allow access to historical data.
Returns the latest 100 fatalities.
Method | URI |
---|---|
GET | /fatalities |
{
"current_page": 1,
"data": [
{
"id": 380,
"province": "ON",
"date": "2020-04-07"
},
...
],
"first_page_url": ".../fatalities?page=1",
"from": 1,
"last_page": 4,
"last_page_url": ".../fatalities?page=4",
"next_page_url": ".../fatalities?page=2",
"path": ".../fatalities",
"per_page": "100",
"prev_page_url": null,
"to": 100,
"total": 380
}
Parameter | Type | Description |
---|---|---|
province | String | Filter fatalities to a specific province e.g. QC |
per_page | Integer | Number of fatalities per page (max 1000) |
order | DESC |ASC |
If ASC , oldest fatalities are shown first. Defaults to DESC |
/fatalities?province=ON&per_page=50
Returns a single fatality record by ID.
Method | URI |
---|---|
GET | /fatality/:id |
/fatality/123