Global Fishing Watch API
Examples4Wings Bins

Get AIS apparent fishing effort bins for zoom 1 in a daily interval

Example 4Wings bins request for the AIS apparent fishing effort dataset at zoom 1 with a daily interval.

Path parameters

ParameterValueDescription
z1Zoom level

Query parameters

ParameterValueDescription
datasets[0]public-global-fishing-effort:latestAIS apparent fishing effort dataset
temporal-aggregationfalseDon't aggregate values across time
num-bins9Number of bins to generate
intervalDAYDaily temporal resolution

Request

# Make sure to replace [TOKEN] with your API Access Token
curl --location --globoff 'https://gateway.api.globalfishingwatch.org/v3/4wings/bins/1?datasets[0]=public-global-fishing-effort%3Alatest&temporal-aggregation=false&num-bins=9&interval=DAY' \
  -H "Authorization: Bearer [TOKEN]" \

Response

{
  "total": 1,
  "limit": null,
  "offset": null,
  "nextOffset": null,
  "metadata": {},
  "entries": [
    [
      0, 9.614632153181205, 46.89072615583312, 135.94034024094597, 257.06961050684566,
      568.6451974803559, 913.1298155603789, 1173.3012226127767, 1554.9284184570513
    ]
  ]
}