GET /tides/predictions/:station
获取特定 NOAA 潮汐站的预测高潮和低潮时间及高度。返回即将到来的潮汐事件及时间戳和水位。对海岸活动规划、海洋导航、钓鱼应用和海滩出行安排至关重要。提供有效的 NOAA 站点 ID(使用站点端点查找 ID)。
station
必填
NOAA station ID
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
station |
是 | - | 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": -0.322,
"time": "2026-08-12 05:47",
"type": "low"
},
{
"height_m": 1.614,
"time": "2026-08-12 12:49",
"type": "high"
},
{
"height_m": 0.683,
"time": "2026-08-12 17:40",
"type": "low"
},
{
"height_m": 2.054,
"time": "2026-08-12 23:49",
"type": "high"
},
{
"height_m": -0.253,
"time": "2026-08-13 06:28",
"type": "low"
},
{
"height_m": 1.672,
"time": "2026-08-13 13:25",
"type": "high"
},
{
"height_m": 0.578,
"time": "2026-08-13 18:32",
"type": "low"
}
],
"station": "9414290",
"success": true
}