Skip to main content

List latest wildfire detections

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

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

GET /api/v3/wildfires/detections/latest
curl -X GET 'https://dev.breeze-technologies.de/api/v3/wildfires/detections/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 detections.

{
"results": [
{
"id": 193,
"device_id": 684,
"created_at": "2023-01-01T16:45:00.000Z",
"finished_at": "2023-01-01T16:45:00.000Z",
"confidence": "Medium",
"event_id": 100,
"is_correct": 1,
"notes": "Nemo cupiditate veritatis",
"wind_speed": 5,
"wind_direction": 45
},
{
"id": 771,
"device_id": 445,
"created_at": "2023-01-01T16:30:00.000Z",
"finished_at": "2023-01-01T16:30:00.000Z",
"confidence": "Medium",
"event_id": 100,
"is_correct": 0,
"notes": null,
"wind_speed": 5.3,
"wind_direction": 45
}
]
}