← Geo & väder

Tidvattensprognoser

GET /tides/predictions/:station

Hämta förutsagda tider och höjder för hög- och lågvatten för en specifik NOAA-tidvattenstation. Returnerar kommande tidvattenhändelser med tidsstämplar och vattennivåer. Oumbärligt för planering av kustaktiviteter, marin navigation, fiskeappar och stranddagsschemaläggare. Ange ett giltigt NOAA-stations-ID (använd stations-endpointen för att hitta ID:n).

Se det visualiserat

Parametrar

station obligatorisk

NOAA station ID

Exempelförfrågningar

Grundläggande användning
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

Livesvar

{
  "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
}