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 Info

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

Description

Vessels info 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 assigned to the vessel.
pattern: ^[0-9]{7}$
info
objectAdditional detailed information about the vessel.
└─beam
stringBeam (width) of the vessel expressed in meters, including unit.
pattern: ^[0-9]+\s?m$
└─length
stringLength of the vessel expressed in meters, including unit.
pattern: ^[0-9]+\s?m$

Example Request

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

Example Response

{
  "imo": "9279410",
  "info": {
    "beam": "12 m",
    "length": "82 m",
    "country": "Norway",
    "callsign": "LATH7",
    "category": "Tankers",
    "builtYear": "2004",
    "deadweight": "3480",
    "countryCode": "NO",
    "categoryType": "CO2 Tanker"
  },
  "mmsi": "257206000",
  "name": "GERDA"
}
└─country
stringName of the country where the vessel is registered.
└─callsign
stringRadio callsign of the vessel.
└─category
stringGeneral category of the vessel (e.g., Tankers, Cargo).
└─builtYear
stringYear the vessel was built, formatted as a four digit year.
pattern: ^[0-9]{4}$
└─deadweight
stringDeadweight tonnage of the vessel as a numeric string, representing the carrying capacity.
pattern: ^[0-9]+$
└─countryCode
stringISO 3166-1 alpha-2 country code for the vessel's registration country.
pattern: ^[A-Z]{2}$
└─categoryType
stringSpecific type within the vessel's category (e.g., CO2 Tanker).
mmsi
stringMaritime Mobile Service Identity number, a unique 9-digit identifier for the vessel.
pattern: ^[0-9]{9}$
name
stringName of the vessel.