← 地理与天气

潮汐预测

GET /tides/predictions/:station

获取特定 NOAA 潮汐站的预测高潮和低潮时间及高度。返回即将到来的潮汐事件及时间戳和水位。对海岸活动规划、海洋导航、钓鱼应用和海滩出行安排至关重要。提供有效的 NOAA 站点 ID(使用站点端点查找 ID)。

查看可视化效果

参数

station 必填

NOAA station ID

请求示例

基本用法
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

实时响应

{
  "count": 7,
  "data": [
    {
      "height_m": 1.606,
      "time": "2026-05-22 04:06",
      "type": "high"
    },
    {
      "height_m": -0.181,
      "time": "2026-05-22 11:03",
      "type": "low"
    },
    {
      "height_m": 1.519,
      "time": "2026-05-22 18:32",
      "type": "high"
    },
    {
      "height_m": 0.755,
      "time": "2026-05-22 23:56",
      "type": "low"
    },
    {
      "height_m": 1.427,
      "time": "2026-05-23 05:20",
      "type": "high"
    },
    {
      "height_m": -0.027,
      "time": "2026-05-23 12:01",
      "type": "low"
    },
    {
      "height_m": 1.588,
      "time": "2026-05-23 19:21",
      "type": "high"
    }
  ],
  "station": "9414290",
  "success": true
}