Download OpenAPI specification:
Wsdot Weather Stations API - Washington State Department of Transportation APIs
Weather station metadata and location information for WSDOT Road Weather Information System stations statewide.
import { fetchWeatherStations } from 'ws-dottie/wsdot-weather-stations/core'; const data = await fetchWeatherStations({ fetchMode: 'native', validate: true }); console.log(data);
Example of a successful response from the API (showing first item of 131 total)
[- {
- "Latitude": 47.4748,
- "Longitude": -122.2704,
- "StationCode": 1909,
- "StationName": "S 144th St on SB I-5 at mp 155.32"
}
]