GET weather/now

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

JsonWeatherNow
NameDescriptionTypeAdditional information
Success

boolean

None.

ErrorMessage

string

None.

WindLast20MinAvgSpeed

decimal number

None.

WindLast20MinAvgGust

decimal number

None.

Wind

JsonWind

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ErrorMessage": "sample string 2",
  "WindLast20MinAvgSpeed": 3.1,
  "WindLast20MinAvgGust": 4.1,
  "Wind": {
    "WindSpeedActual": 1.1,
    "WindGustActual": 2.1,
    "WindDirectionActual": 3.1,
    "DateReading": "2026-06-22T18:10:13.8947027+12:00",
    "CompassDirection": "sample string 5",
    "BarometerAtmosphericPressure": 6.1,
    "BarometerAtmosphericPressureUpDown": 7
  }
}

application/xml, text/xml

Sample:
<JsonWeatherNow 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>
  <Wind>
    <BarometerAtmosphericPressure>6.1</BarometerAtmosphericPressure>
    <BarometerAtmosphericPressureUpDown>7</BarometerAtmosphericPressureUpDown>
    <CompassDirection>sample string 5</CompassDirection>
    <DateReading>2026-06-22T18:10:13.8947027+12:00</DateReading>
    <WindDirectionActual>3.1</WindDirectionActual>
    <WindGustActual>2.1</WindGustActual>
    <WindSpeedActual>1.1</WindSpeedActual>
  </Wind>
  <WindLast20MinAvgGust>4.1</WindLast20MinAvgGust>
  <WindLast20MinAvgSpeed>3.1</WindLast20MinAvgSpeed>
</JsonWeatherNow>