gfw.vessel.fishing_events
mock data$0.002 / callGet Vessel Fishing Events
Retrieve AIS-detected maritime events for a specific vessel — either fishing activity episodes or port visits. Fishing events capture when a vessel slowed and maneuvered in patterns consistent with active fishing (coordinates, duration, EEZ/RFMO/FAO area codes, distance from shore and port). Port visits capture anchorage and berthing stops (port name, flag, entry/exit times). Results are paginated; use offset for subsequent pages. Vessel UUID is obtained from gfw.vessel.search.
Input schema
Number of events per page (1–50, default 10).
Pagination offset — number of events to skip (default 0).
Filter events ending on or before this date in ISO format YYYY-MM-DD (e.g. "2023-12-31").
GFW vessel UUID as returned by gfw.vessel.search (e.g. "1f1f12b24-4dfb-e5c8-90b0-32f8e79402c1").
Type of maritime event to retrieve. "fishing" returns AIS-detected fishing activity events; "port_visit" returns port calls and anchorage stops. Default: "fishing".
Filter events starting on or after this date in ISO format YYYY-MM-DD (e.g. "2023-01-01").
Call via REST
curl -X POST https://unifyapi.pro/api/call/gfw.vessel.fishing_events \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"limit":0,"offset":0,"end_date":"<end_date>","vessel_id":"<vessel_id>","event_type":"<event_type>","start_date":"<start_date>"}'