Access historical burned area data from all over Europe.

<aside> 🇪🇺 Coverage: Europe

</aside>

ENDPOINTS

GET /burned_areas

List Burned Areas

Retrieve a list of burned areas. The burned areas are returned in sorted order, with the most recent appearing first.

Parameter Description Mandatory
start filter starting at a certain time (unix timestamp UTC-0) in the past (default: now-24h) No
end filter until a certain time (unix timestamp UTC-0) in the past No
country filter by Two-letter comma separated country codes (ISO 3166-1 ALPHA-2) No
bbox filter by comma separated bounding box (southwestLng, southwestLat, northeastLng, northeastLat) No
limit limit on the number of objects to be returned (default: 25) No

Returns

Returns a GeoJson FeatureCollection of burned areas.

If no filter parameters are defined the newest burned_areas from the database are returned with the default limit of 25.

GET /burned_areas

curl

curl <https://api.riscognition.io/burned_areas> \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/burned_areas>", headers = headers)

Retrieve a single Burned Area

Retrieve a single burned area by id.

| --- | --- | --- |

Returns

Returns a GeoJson FeatureCollection with a single burned area.

GET /burned_areas/:id

curl

curl "<https://api.riscognition.io/burned_areas/332>" \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/burned_areas/332>", headers = headers)