← 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).

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": 0.843,
      "time": "2026-05-10 00:58",
      "type": "low"
    },
    {
      "height_m": 1.28,
      "time": "2026-05-10 06:02",
      "type": "high"
    },
    {
      "height_m": 0.097,
      "time": "2026-05-10 12:46",
      "type": "low"
    },
    {
      "height_m": 1.422,
      "time": "2026-05-10 20:07",
      "type": "high"
    },
    {
      "height_m": 0.66,
      "time": "2026-05-11 01:55",
      "type": "low"
    },
    {
      "height_m": 1.246,
      "time": "2026-05-11 07:20",
      "type": "high"
    },
    {
      "height_m": 0.167,
      "time": "2026-05-11 13:35",
      "type": "low"
    },
    {
      "height_m": 1.529,
      "time": "2026-05-11 20:38",
      "type": "high"
    }
  ],
  "station": "9414290",
  "success": true
}