Global Fishing Watch API
ExamplesBulk Download

Generate report for Argentina EEZ with filter by label_confidence = 'medium'

Example bulk report request for the Argentina EEZ, filtered to medium label confidence detections.

Request body

FieldValueDescription
namesar-vessel-detection-example-mediumName 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_confidence = 'medium'"]Filter by medium-confidence detections

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-medium",
  "dataset": "public-fixed-infrastructure-data:latest",
  "format": "CSV",
  "region": {
    "dataset": "public-eez-areas",
    "id": 8466
  },
  "filters": ["label_confidence = '\''medium'\''"]
}'

Response

{
    "id": "f32c36b5-99e2-45b7-a106-95dfa22bd7be",
    "dataset": "public-fixed-infrastructure-data:v1.1",
    "name": "sar-vessel-detection-example-medium",
    "filepath": "sar_fixed_infrastructure_202409.csv",
    "filters": [
        "label_confidence = 'medium'"
    ],
    "status": "pending",
    "geom": {
        "type": "dataset",
        "dataset": "public-eez-areas",
        "id": 8466
    },
    "createdAt": "2025-06-27T10:17:53.740Z",
    "updatedAt": "2025-06-27T10:17:53.740Z",
    "ownerId": 509,
    "ownerType": "user-application",
    "format": "CSV",
    "fileSize": null
}