Skip to main content

List latest wildfire events

GET
https://dev.breeze-technologies.de/api/v3/wildfires/events/latest

Retrieves all wildfire event measurements for all the sensors that your account has access to, going back up to a year.

GET /api/v3/wildfires/events/latest
curl -X GET 'https://dev.breeze-technologies.de/api/v3/wildfires/events/latest' \
-d api_token=<YOUR_API_TOKEN>

Parameters

NameDescriptionTypeData type
api_tokenThe current user's API tokenquerystringRequired

Returns

A dictionary with a results property that contains an array of wildfire events.

{
"results": [
{
"id": 564,
"start": "2023-08-05T03:03:11.000Z",
"end": "2023-08-05T03:03:11.000Z",
"location_id": null,
"is_correct": 0,
"notes": "Fusce consequat."
},
{
"id": 146,
"start": "2022-12-28T09:21:41.000Z",
"end": "2022-12-28T09:21:41.000Z",
"location_id": null,
"is_correct": null,
"notes": null
}
]
}