← 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": -0.057,
      "time": "2026-06-26 04:18",
      "type": "low"
    },
    {
      "height_m": 1.287,
      "time": "2026-06-26 11:35",
      "type": "high"
    },
    {
      "height_m": 0.961,
      "time": "2026-06-26 15:32",
      "type": "low"
    },
    {
      "height_m": 1.848,
      "time": "2026-06-26 21:41",
      "type": "high"
    },
    {
      "height_m": -0.121,
      "time": "2026-06-27 04:57",
      "type": "low"
    },
    {
      "height_m": 1.341,
      "time": "2026-06-27 12:22",
      "type": "high"
    },
    {
      "height_m": 1.012,
      "time": "2026-06-27 16:18",
      "type": "low"
    },
    {
      "height_m": 1.855,
      "time": "2026-06-27 22:18",
      "type": "high"
    }
  ],
  "station": "9414290",
  "success": true
}