Endpoints
Stations
Lists all NOAA tide stations.
Path
/api/tide/stations[.ext]
Methods
Content Types
Path Params
- ext
- description: requested content type
- type: string
- optional: true
- default: json
Query Params
None
Station
Fetch a NOAA tide station by id.
Path
/api/tide/stations/{id}[.ext]
Methods
Content Types
Path Params
- ext
- description: requested content type
- type: string
- optional: true
- default: json
- id
- description: station id
- type: string
- optional: false
Query Params
None
Tides For Date Range
Lists all tides for a NOAA tide station for a date range.
Path
/api/tide/station/{id}/predictions[.ext]
Methods
Content Types
Path Params
- ext
- description: requested content type
- type: string
- optional: true
- default: json
- id
- description: station id
- type: string
- optional: false
Query Params
- start
- description: start date for tide predictions
- type: date
- optional: true
- default: current date
- end
- description: end date for tide predictions
- type: date
- optional: true
- default: current date
Tides For Date
Lists all tides for a NOAA tide station for a specific date.
Path
/api/tide/station/{id}/predictions/{date}[.ext]
Methods
Content Types
Path Params
- ext
- description: requested content type
- type: string
- optional: true
- default: json
- id
- description: station id
- type: string
- optional: false
- date
- description: date for tide predictions
- type: string
- format: YYYYMMDD or current
- optional: false
Query Params
Node