Global Fishing Watch API
ExamplesBulk Download

Generate report for Argentina EEZ with filters by structure_start_date and structure_end_date

Example bulk report request for the Argentina EEZ, filtered by structure start and end dates.

Request body

FieldValueDescription
namesar-vessel-detection-example-dates-rangeName of the report
datasetpublic-fixed-infrastructure-data:latestFixed infrastructure dataset
formatCSVOutput format of the report
region.datasetpublic-eez-areasExisting region dataset
region.id8466Argentina EEZ region id
filters["structure_start_date between '2020-01-01' and '2023-01-01' ", "structure_end_date between '2022-01-01' and '2025-01-01' "]Filter by start and end date ranges

Request

# Make sure to replace [TOKEN] with your API Access Token.
curl --location 'https://gateway.api.globalfishingwatch.org/v3/bulk-reports' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer TOKEN' \
--data '{
  "name": "sar-vessel-detection-example-dates-range",
  "dataset": "public-fixed-infrastructure-data:latest",
  "format": "CSV",
  "region": {
    "dataset": "public-eez-areas",
    "id": 8466},
    "filters": ["structure_start_date between '\''2020-01-01'\'' and '\''2023-01-01'\'' ", "structure_end_date between '\''2022-01-01'\'' and '\''2025-01-01'\'' "]
}'

Response

{
    "id": "ec189fda-da57-4c64-89cc-a99463a4491a",
    "dataset": "public-fixed-infrastructure-data:v1.1",
    "name": "fixed-infrastructure-example-dates-range",
    "filepath": "sar_fixed_infrastructure_202409.csv",
    "filters": [
        "structure_start_date between '2020-01-01' and '2023-01-01' ",
        "structure_end_date between '2022-01-01' and '2025-01-01' "
    ],
    "status": "pending",
    "geom": {
        "type": "dataset",
        "dataset": "public-eez-areas",
        "id": 8466
    },
    "createdAt": "2025-07-01T00:52:48.485Z",
    "updatedAt": "2025-07-01T00:52:48.485Z",
    "ownerId": 385,
    "ownerType": "user-application",
    "format": "CSV",
    "fileSize": null
}