Skip to main content

List historic wildfire detections

GET
https://dev.breeze-technologies.de/api/v3/wildfires/detections/historic

Retrieves wildfire detections measurements recorded within the specified date range for all the sensors that your account has access to.

Should the start date not be specified, the default will be set to one year prior from the current date. In the absence of an end date, the default is set to the current day.

GET /api/v3/wildfires/detections/historic
curl -X GET \
'https://dev.breeze-technologies.de/api/v3/wildfires/detections/historic' \
-d api_token=<YOUR_API_TOKEN> \
-d start=2023-12-28T12%3A14%3A46 \
-d end=2023-12-29T12%3A14%3A46

Parameters

NameDescriptionTypeData type
api_tokenThe current user's API tokenquerystringRequired
startThe beginning of the time range in ISO 8601 format (e.g. 2023-12-28T12:14:46)querystring
endThe end of the time range in ISO 8601 format (e.g. 2024-02-06T15:15:43)querystring

Returns

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

{
"results": [
{
"id": 374,
"device_id": 403,
"created_at": "2023-11-06T21:35:46Z",
"finished_at": "2023-11-07T14:11:55Z",
"confidence": "Low",
"event_id": 675,
"is_correct": 0,
"notes": null
},
{
"id": 919,
"device_id": 330,
"created_at": "2023-01-30T08:34:45Z",
"finished_at": "2023-01-30T11:48:47Z",
"confidence": "Medium",
"event_id": 23,
"is_correct": 1,
"notes": "Pellentesque at nulla."
}
]
}