Skip to main content
GET
/
port-calls-by-vessel
Port Calls By Vessel
curl --request GET \
  --url https://datadocked.com/api/vessels_operations/port-calls-by-vessel \
  --header 'x-api-key: <api-key>'
{
  "detail": {
    "name": "<string>",
    "imo": "<string>",
    "mmsi": "<string>",
    "ports": [
      [
        {
          "arrived": "<string>",
          "departed": "<string>",
          "portName": "<string>",
          "portSign": "<string>"
        }
      ]
    ]
  }
}
Retrieve historical port call data for a specific vessel including arrival/departure times and port information.
Credits: 1 credit per request

Response Data

Returns the vessel’s port call history with:
  • Port Name: Full port name and country
  • Port Sign: UN/LOCODE (e.g., ESBCN for Barcelona)
  • Arrived: Arrival date and time
  • Departed: Departure date and time

Use Cases

  • Track vessel voyage history
  • Verify port calls for compliance
  • Analyze trade routes and patterns
  • Calculate port turnaround times

Authorizations

x-api-key
string
header
required

Your personal API key found in your profile dashboard at https://datadocked.com/dashboard/my_keys

Query Parameters

imo_or_mmsi
string
required

The IMO or MMSI number of the vessel you want to query.

Response

Successful response with port calls

detail
object