← Geo & Weather

Tide Predictions

GET /tides/predictions/:station

Get predicted high and low tide times and heights for a specific NOAA tide station. Returns upcoming tide events with timestamps and water levels. Essential for coastal activity planning, marine navigation, fishing apps, and beach-going schedulers. Provide a valid NOAA station ID (use the stations endpoint to find IDs).

See it visualized

Parameters

station required

NOAA station ID

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/tides/predictions/9414290
Tide predictions for San Francisco
curl https://nordapi.ee/api/v1/tides/predictions/9414290
Tide predictions for New York (The Battery)
curl https://nordapi.ee/api/v1/tides/predictions/8518750
Tide predictions for Miami
curl https://nordapi.ee/api/v1/tides/predictions/8723214

Live Response

{
  "count": 8,
  "data": [
    {
      "height_m": 1.479,
      "time": "2026-07-05 02:55",
      "type": "high"
    },
    {
      "height_m": 0.046,
      "time": "2026-07-05 09:28",
      "type": "low"
    },
    {
      "height_m": 1.569,
      "time": "2026-07-05 16:44",
      "type": "high"
    },
    {
      "height_m": 0.739,
      "time": "2026-07-05 22:20",
      "type": "low"
    },
    {
      "height_m": 1.33,
      "time": "2026-07-06 03:53",
      "type": "high"
    },
    {
      "height_m": 0.211,
      "time": "2026-07-06 10:07",
      "type": "low"
    },
    {
      "height_m": 1.65,
      "time": "2026-07-06 17:19",
      "type": "high"
    },
    {
      "height_m": 0.594,
      "time": "2026-07-06 23:28",
      "type": "low"
    }
  ],
  "station": "9414290",
  "success": true
}