Skip to main content
GET
/
get-vessel-weather
Vessel Weather Data
curl --request GET \
  --url https://datadocked.com/api/vessels_operations/get-vessel-weather \
  --header 'x-api-key: <api-key>'
{
  "status_code": 123,
  "detail": {
    "name": "<string>",
    "MMSI": "<string>",
    "IMO": "<string>",
    "temperature": "<string>",
    "windSpeed": "<string>",
    "waves": "<string>"
  }
}
Retrieve current weather conditions at the vessel’s location including temperature, wind speed, and wave height.
Credits: 1 credit per request

Response Fields

  • Temperature: Current air temperature at vessel location
  • Wind Speed: Current wind speed in m/s
  • Waves: Current wave height in meters
This endpoint requires an IMO number (not MMSI).
Combine with the vessel location endpoint to understand both the vessel’s position and the weather conditions it’s experiencing.

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
string
required

The IMO number of the vessel you want to query.

Response

Successful response with weather data

status_code
integer
detail
object