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).
station
required
NOAA station ID
| Name | Required | Default | Description |
|---|---|---|---|
station |
Yes | - | NOAA station ID |
curl https://nordapi.ee/api/v1/tides/predictions/9414290
curl https://nordapi.ee/api/v1/tides/predictions/9414290
curl https://nordapi.ee/api/v1/tides/predictions/8518750
curl https://nordapi.ee/api/v1/tides/predictions/8723214
{
"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
}