Skip to main content
GET
/
api
/
wildfire
/
v1
/
list-fire-detections
ListFireDetections
curl --request GET \
  --url https://api.example.com/api/wildfire/v1/list-fire-detections
{
  "fireDetections": [
    {
      "id": "<string>",
      "location": {
        "latitude": 0,
        "longitude": 0
      },
      "brightness": 123,
      "frp": 123,
      "confidence": "FIRE_CONFIDENCE_UNSPECIFIED",
      "satellite": "<string>",
      "detectedAt": 123,
      "region": "<string>",
      "dayNight": "<string>"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "totalCount": 123
  }
}

Query Parameters

start
string<int64>

Start of time range (inclusive), Unix epoch milliseconds.

end
string<int64>

End of time range (inclusive), Unix epoch milliseconds.

page_size
integer<int32>

Maximum items per page (1-100).

cursor
string

Cursor for next page.

ne_lat
number<double>

North-east latitude of bounding box.

ne_lon
number<double>

North-east longitude of bounding box.

sw_lat
number<double>

South-west latitude of bounding box.

sw_lon
number<double>

South-west longitude of bounding box.

Response

Successful response

ListFireDetectionsResponse contains the list of fire detections matching the request filters.

fireDetections
object[]
pagination
object

PaginationResponse contains pagination metadata returned alongside list results.