← Geo & Weather

Water Level

GET /tides/level/:station

Get the current real-time water level reading at a specific NOAA tide station. Returns the latest observed water level measurement. Useful for coastal flooding alerts, harbor management, dock scheduling, and comparing actual water levels to predicted tides. Data is from live NOAA sensors updated in near real-time.

Parameters

station required

Station ID

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/tides/level/9414290
Water level at San Francisco
curl https://nordapi.ee/api/v1/tides/level/9414290
Water level at Seattle
curl https://nordapi.ee/api/v1/tides/level/9447130

Live Response

{
  "data": {
    "quality": "p",
    "time": "2026-04-05 08:36",
    "water_level_m": 0.147
  },
  "station": "9414290",
  "success": true
}