Global Fishing Watch API
ExamplesBulk Download

Generate SAR fixed infrastructure report for Argentina EEZ with filter by label = 'oil' and structure_start_date

Example bulk report request for SAR fixed infrastructure in the Argentina EEZ, filtered by label oil and structure start date, as CSV.

Request body

FieldValueDescription
namesar-vessel-detection-example-1Name 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["label = 'oil'", "structure_start_date between '2020-01-01' and '2025-01-01'"]Filter by oil label and start date range

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-1",
  "dataset": "public-fixed-infrastructure-data:latest",
  "format": "CSV",
  "region": {
    "dataset": "public-eez-areas",
    "id": 8466
  },
  "filters": [
    "label = '\''oil'\''",
    "structure_start_date between '\''2020-01-01'\'' and '\''2025-01-01'\''"
  ]
}'

Response

{
    "id": "adbb9b62-5c08-4142-82e0-b2b575f3e058",
    "dataset": "public-fixed-infrastructure-data:v1.1",
    "name": "sar-vessel-detection-example-1",
    "filepath": "sar_fixed_infrastructure_202409.csv",
    "filters": [
        "label = 'oil'",
        "structure_start_date between '2020-01-01' and '2025-01-01' "
    ],
    "status": "pending",
    "geom": {
        "type": "dataset",
        "dataset": "public-eez-areas",
        "id": 8466
    },
    "createdAt": "2025-06-27T06:43:35.571Z",
    "updatedAt": "2025-06-27T06:43:35.571Z",
    "ownerId": 509,
    "ownerType": "user-application",
    "format": "CSV",
    "fileSize": null
}