GET
/
vessels
/
{imo}
curl --request GET \
  --url https://api.terminal49.com/v2/vessels/{imo} \
  --header 'Authorization: <api-key>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "vessel",
    "attributes": {
      "name": "Ever Given",
      "imo": "9811000",
      "mmsi": "353136000",
      "latitude": 25.29845,
      "longitude": 121.217,
      "nautical_speed_knots": 90,
      "navigational_heading_degrees": 194,
      "position_timestamp": "2023-07-28T14:01:37Z"
    }
  }
}

Authorizations

Authorization
string
header
required

Token YOUR_API_TOKEN

The APIs require authentication to be done using header-based API Key and Secret Authentication.

API key and secret are sent va the Authorization request header.

You send your API key and secret in the following way:

Authorization: Token YOUR_API_KEY

Path Parameters

imo
string
required

Response

200 - application/json
OK
data
object