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)

Observations Info

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

Description

Public partner view: aggregated global meteorological observations (KNMI, BUFR ground, BUFR ship, AMDAR, NOAA METAR, NDBC, MVB, BSH, Copernicus Marine, radiosonde, earthquake catalog).

Parameters

No parameters needed.

Response

PropertyTypeDescription
sources
arrayA list of observational data sources, each with a unique identifier and a descriptive name.
minItems: 1
└─id
stringA unique identifier for the observation source.
└─name
stringA descriptive name of the observation source.

Example Request

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

Example Response

{
  "sources": [
    {
      "id": "amdar",
      "name": "AMDAR (aircraft) observations"
    },
    {
      "id": "bsh",
      "name": "BSH (Pegel Online) German coastal observations"
    },
    {
      "id": "bsh-wave",
      "name": "BSH Wave (MARNET/FINO/RAVE) observations"
    },
    {
      "id": "bufr-ground",
      "name": "BUFR ground observations"
    },
    {
      "id": "bufr-ship",
      "name": "BUFR ship observations"
    },
    {
      "id": "copernicus-marine",
      "name": "Copernicus Marine in-situ observations"
    },
    {
      "id": "knmi10min",
      "name": "KNMI 10-minute observations"
    },
    {
      "id": "earthquake",
      "name": "KNMI Earthquake Catalog observations"
    },
    {
      "id": "mvb",
      "name": "MVB (Meetnet Vlaamse Banken) Belgian coastal observations"
    },
    {
      "id": "ndbc",
      "name": "NDBC (NOAA National Data Buoy Center) observations"
    },
    {
      "id": "rws",
      "name": "RWS observations"
    },
    {
      "id": "wavenet",
      "name": "WaveNet (Cefas) UK coastal wave observations"
    }
  ]
}