v1
latestOpenAPI 3.0.02026-07-2641142112.7 KBSchedule port
Get vessels arrivals and departure at port
Get the vessels arriving at and departing from a specific port over a date range. Provide the port UN/LOCODE (required) and, optionally, the sealines and the date range.
get/schedules/port/traffic
Query parameters
unlocodestring required
Example:NLRTM
Required UN/LOCODE of the port
sealinesstring[]
Optional list of sealines
dateFromstring yyyy-MM-dd
Schedule date from in port local time, must be in futur
dateTostring yyyy-MM-dd
Schedule date to in port local time, must be in futur and after dateFrom if present
Response
Schedule found
Example response
{
"metadata": {
"port": "NLRTM",
"dateFrom": "2025-08-24",
"dateTo": "2025-08-24"
},
"data": {
"arrivals": [
{
"terminalName": "ECT DELTA TERMINAL, ROTTERDAM",
"sealineName": "ONE",
"sealine": "ONEY",
"serviceCode": "IOS",
"serviceName": "IOS",
"vesselName": "COLOMBO EXPRESS",
"date": "2025-08-24"
}
],
"departures": [
{
"terminalName": "ECT DELTA TERMINAL, ROTTERDAM",
"sealineName": "ONE",
"sealine": "ONEY",
"serviceCode": "IOS",
"serviceName": "IOS",
"vesselName": "COLOMBO EXPRESS",
"date": "2025-08-24"
}
]
}
}