Skip to main content

Get Your API Key

1

Sign up

Create an account at datadocked.com/signup
2

Get your key

Find your API key in your dashboard

Track a Vessel

Get the real-time location of any vessel using its IMO or MMSI number.
curl -X GET "https://datadocked.com/api/vessels_operations/get-vessel-location?imo_or_mmsi=9247431" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "detail": {
    "name": "REGAL_I",
    "imo": "9247431",
    "mmsi": "655919000",
    "latitude": "33.384193",
    "longitude": "128.03142",
    "speed": "1.1",
    "course": "91",
    "heading": "89",
    "destination": "Suez canal Egypt",
    "navigationalStatus": "Underway using Engine",
    "positionReceived": "Jan 04, 2026 04:15 UTC",
    "dataSource": "Satellite"
  }
}

Check Your Credits

curl "https://datadocked.com/api/vessels_operations/my-credits" \
  -H "x-api-key: YOUR_API_KEY"
Response:
{
  "detail": "99929 credits left."
}

Common Endpoints


Finding Vessel Identifiers

Search by Name

curl "https://datadocked.com/api/vessels_operations/vessels-by-vessel-name?name=EVER_GIVEN" \
  -H "x-api-key: YOUR_API_KEY"
Replace spaces in vessel names with underscores: EVER GIVENEVER_GIVEN

Response

{
  "total": 1,
  "items": [
    {
      "name": "EVER GIVEN",
      "imo": "9811000",
      "mmsi": "353136000",
      "country": "Panama",
      "type": "Container Ship"
    }
  ]
}

Next Steps