Logo
developer platform
Docs
API
Pricing
Showcase
API Overview
API Reference
Geocoding
Geocoding NearbyGeocoding SearchPort ListPort Info
Weather Core
ForecastRadarClimateWarnings
Weather Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Weather Ensemble
Ensemble ModelsEnsemble Point ForecastEnsemble Route Forecast
Marine Timeseries
Timeseries ModelsTimeseries Point Forecast
Marine Ensemble
Ensemble ModelsEnsemble Point Forecast
Vessels
Vessel SearchVessel InfoVessel LocationVessel Location History
Observations
Observations InfoObservations Latest
Lightning
Lightning LiveLightning History
Earthquakes
Earthquakes
Tropical Storms
Tropical Storms
Mobility Traffic (NL Only)
Traffic OverviewTraffic Geo
Mobility Transit (NL Only)
Transit PlannerTransit Planner MixerTransit Stops NearbyTransit Stop Departures
Developer Infoplaza (obsolete)
Weather ClimateWeather Forecast
Archive
Test ErrorWeather Climate (old)

Vessel Location

GET
https://api.infoplaza.dev/v1/vessel/location

Description

Vessel location by IMO or MMSI number.

Parameters

ParameterTypeRequiredDefaultDescription
imostringOptional-IMO number
mmsistringOptional-MMSI number

Response

PropertyTypeDescription
imo
stringInternational Maritime Organization number, a unique 7-digit identifier for the vessel.
pattern: ^[0-9]{7}$
mmsi
stringMaritime Mobile Service Identity number, a unique 9-digit identifier for the vessel.
pattern: ^[0-9]{9}$
name
stringName of the vessel.
location
objectCurrent location and status details of the vessel.
speed

Example Request

curl "https://api.infoplaza.dev/v1/vessel/location? \
     api_key=$INFOPLAZA_API_KEY"

Example Response

{
  "imo": "9279410",
  "mmsi": "257206000",
  "name": "GERDA",
  "location": {
    "speed": 8.3,
    "course": 55,
    "source": "Satellite",
    "status": "Underway using Engine",
    "heading": 57,
    "latitude": 56.023022,
    "longitude": 16.632103,
    "updateTime": "May 27, 2026 10:35 UTC",
    "destination": "Norrkoping Sweden"
  }
}
└─
number
Current speed of the vessel in knots.
└─course
integerCourse over ground in degrees.
min: 0 max: 359
└─source
stringSource of the positional data, e.g. Satellite.
└─status
stringCurrent navigational status of the vessel, e.g. underway using engine.
└─heading
integerHeading of the vessel in degrees.
min: 0 max: 359
└─latitude
numberCurrent latitude position of the vessel in decimal degrees.
min: -90 max: 90
└─longitude
numberCurrent longitude position of the vessel in decimal degrees.
min: -180 max: 180
└─updateTime
stringTimestamp of the last update in a human-readable format with UTC timezone included.
└─destination
stringIntended destination of the vessel.