← 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": 7,
  "data": [
    {
      "height_m": 1.23,
      "time": "2026-09-03 05:34",
      "type": "high"
    },
    {
      "height_m": 0.911,
      "time": "2026-09-03 09:45",
      "type": "low"
    },
    {
      "height_m": 1.87,
      "time": "2026-09-03 16:23",
      "type": "high"
    },
    {
      "height_m": 0.111,
      "time": "2026-09-03 23:37",
      "type": "low"
    },
    {
      "height_m": 1.232,
      "time": "2026-09-04 07:17",
      "type": "high"
    },
    {
      "height_m": 1.036,
      "time": "2026-09-04 10:57",
      "type": "low"
    },
    {
      "height_m": 1.865,
      "time": "2026-09-04 17:27",
      "type": "high"
    }
  ],
  "station": "9414290",
  "success": true
}