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.785,
"time": "2026-05-21 03:00",
"type": "high"
},
{
"height_m": -0.325,
"time": "2026-05-21 10:04",
"type": "low"
},
{
"height_m": 1.469,
"time": "2026-05-21 17:38",
"type": "high"
},
{
"height_m": 0.871,
"time": "2026-05-21 22:31",
"type": "low"
},
{
"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"
}
],
"station": "9414290",
"success": true
}