GET swell/now/{buoy}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| buoy | string |
Required |
Body Parameters
None.
Response Information
Resource Description
JsonSwellNow| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| Swell | JsonSwell |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessage": "sample string 2",
"Swell": {
"SwellMeanTrueDirection": 1.1,
"SwellAvgHeight": 2.1,
"SwellPeakPeriod": 3.1,
"DateReading": "2026-06-22T18:16:04.9257839+12:00",
"CurrentBuoy": "sample string 5"
}
}
application/xml, text/xml
Sample:
<JsonSwellNow xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NapierPort.WebApi.Json.Models.Weather">
<ErrorMessage>sample string 2</ErrorMessage>
<Success>true</Success>
<Swell>
<CurrentBuoy>sample string 5</CurrentBuoy>
<DateReading>2026-06-22T18:16:04.9257839+12:00</DateReading>
<SwellAvgHeight>2.1</SwellAvgHeight>
<SwellMeanTrueDirection>1.1</SwellMeanTrueDirection>
<SwellPeakPeriod>3.1</SwellPeakPeriod>
</Swell>
</JsonSwellNow>