GET /tides/predictions/:station
Obtenga las horas y alturas previstas de pleamar y bajamar para una estación de mareas concreta de la NOAA. Devuelve los próximos eventos de marea con marcas de tiempo y niveles del agua. Esencial para la planificación de actividades costeras, la navegación marítima, las aplicaciones de pesca y los planificadores de salidas a la playa. Proporcione un ID válido de estación de la NOAA (use el endpoint de estaciones para encontrar los IDs).
station
requerido
NOAA station ID
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
station |
Si | - | 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": 8,
"data": [
{
"height_m": 1.479,
"time": "2026-07-05 02:55",
"type": "high"
},
{
"height_m": 0.046,
"time": "2026-07-05 09:28",
"type": "low"
},
{
"height_m": 1.569,
"time": "2026-07-05 16:44",
"type": "high"
},
{
"height_m": 0.739,
"time": "2026-07-05 22:20",
"type": "low"
},
{
"height_m": 1.33,
"time": "2026-07-06 03:53",
"type": "high"
},
{
"height_m": 0.211,
"time": "2026-07-06 10:07",
"type": "low"
},
{
"height_m": 1.65,
"time": "2026-07-06 17:19",
"type": "high"
},
{
"height_m": 0.594,
"time": "2026-07-06 23:28",
"type": "low"
}
],
"station": "9414290",
"success": true
}