Port Information
Port Database
Access comprehensive information about ports worldwide:
http
GET /ports/{unlocode}json
{
"unlocode": "NLRTM",
"name": "Port of Rotterdam",
"country": "Netherlands",
"coordinates": {
"latitude": 51.8833,
"longitude": 4.3000
},
"timezone": "Europe/Amsterdam",
"facilities": [
"Container Terminal",
"Bulk Terminal",
"Oil Terminal"
]
}Port Schedule
Get vessel schedules for specific ports:
http
GET /ports/{unlocode}/schedulejson
{
"unlocode": "NLRTM",
"schedule": [
{
"vessel": {
"imo": "9876543",
"name": "OCEAN VOYAGER"
},
"arrival": "2024-01-21T08:00:00Z",
"departure": "2024-01-22T16:00:00Z",
"terminal": "ECT Delta"
}
]
}Port Statistics
Access port statistics and performance metrics:
http
GET /ports/{unlocode}/statisticsjson
{
"unlocode": "NLRTM",
"statistics": {
"vesselCalls": 29000,
"containerThroughput": 14500000,
"averageWaitingTime": 2.5
}
}