Back to how-to articles
DIST Alerts (all-ecosystem vegetation disturbance alerts) x Global Forest Watch API
Last updated: July 3, 2025

Before you get started
If you are new to the Global Forest Watch API, it is a good idea to begin with the foundational guide. It covers essential steps like signing up, getting access token and API key. You can find it here:
Steps
- Find the version of the dataset
- Find the fields to query
- Make a query
Find the version
To receive data about the DIST Alerts (all-ecosystem vegetation disturbance alerts) dataset, you can use a GET
request to the /dataset/umd_glad_dist_alerts
endpoint.
1curl -X GET 'https://data-api.globalforestwatch.org/dataset/umd_glad_dist_alerts'
If successful, this will return a response like this, with metadata and versions:
1{
2 "data": {
3 "created_on": "2025-06-21T21:01:23.486828",
4 "updated_on": "2025-06-22T03:20:41.122329",
5 "dataset": "umd_glad_dist_alerts",
6 "is_downloadable": true,
7 "metadata": {
8 ...
9 },
10 "versions": [
11 ...
12 "v20250614",
13 "v20250621"
14 ]
15 },
16 "status": "success"
17}
For the next steps you can pick a specific version of the dataset or just use /latest
for the latest version.
Find the relevant fields
Before querying the dataset, you will need to know what fields to get from the dataset. To retrieve this, you can use a GET
request to dataset/umd_glad_dist_alerts/latest/fields
1curl -L -X GET 'https://data-api.globalforestwatch.org/dataset/umd_glad_dist_alerts/latest/fields'
DIST Alerts (all-ecosystem vegetation disturbance alerts) is a default raster asset. The response will include all Global Forest Watch raster tile sets that use the same grid as the raster default asset. Common fields like area__ha
, latitude
, and longitude
are also included.
The other relevant fields for Forest Disturbance (DIST) Alerts are:
- umd_glad_landsat_alerts__date
- The date the alert was issued or detected.
- umd_glad_landsat_alerts__confidence
"low"
= low certainty"nominal"
= medium certainty"high"
= strong certainty
- umd_glad_dist_alerts__intensity
- A numeric value representing how strong or intense the alert signal is.
Query dataset
In addition to the dataset identifier umd_glad_dist_alerts
and version, you need to construct an SQL
query and a geometry to limit the area of interest.
Limit data to area of interest
There are two ways to do this; using Geostore, or using GeoJson in a Post request. Both methods require geojson format. The possible geometry types available in Global Forest Watch is Polygon and MultiPolygon. To easily generate this format, visit https://geojson.io.
Using POST request with a polygon
Example using polygon:
1curl -L -X POST 'https://data-api.globalforestwatch.org/dataset/umd_glad_dist_alerts/latest/query/json' \
2 -H 'x-api-key: <YOUR_API_KEY>' \
3 -H 'Content-Type: application/json' \
4 --data-raw '{
5 "sql": "SELECT longitude, latitude, umd_glad_landsat_alerts__date, umd_glad_landsat_alerts__confidence,umd_glad_dist_alerts__intensity FROM results WHERE umd_glad_landsat_alerts__date >= '\''2025-06-01'\'' LIMIT 10 ",
6 "geometry": {
7 "type": "Polygon",
8 "coordinates": [[
9 [-55.390,-20.973],
10 [ -55.390,21.0229],
11 [-54.446,-21.022],
12 [-54.446,20.293],
13 [ -55.390, -20.073]
14 ]]
15 }
16 }'
If successful the response will look something like this:
1{
2 "data": [
3 {
4 "latitude": -7.73738,
5 "longitude": -54.70338,
6 "umd_glad_landsat_alerts__date": "2025-06-07",
7 "umd_glad_landsat_alerts__confidence": "nominal",
8 "umd_glad_dist_alerts__intensity": 55
9 },
10 {
11 "latitude": -7.73837,
12 "longitude": -54.70463,
13 "umd_glad_landsat_alerts__date": "2025-06-15",
14 "umd_glad_landsat_alerts__confidence": "nominal",
15 "umd_glad_dist_alerts__intensity": 55
16 }
17 ],
18 "status": "success"
19}
You can read more about Geostore and constructing SQL queries from in the Global Forest Watch tutorial.