Scott's Weather API

Simple, reliable weather data for your web applications and home automations.

Download on Github

Real-time Data

Current conditions including temperature, humidity, and wind speed

Weather Alerts

Active alerts and advisories from the National Weather Service

Smart Caching

5-minute cache to respect rate limits while staying current

API Endpoints

GET /api

Returns simplified weather data with essential fields only.

{ "temperature": 72.5, "humidity": 65, "windSpeed": 8.5, "description": "Partly cloudy", "lastUpdated": "2024-02-15T12:00:00Z" }
GET /api/full

Returns complete weather data including all available fields.

{ "temperature": 72.5, "humidity": 65, "windSpeed": 8.5, "description": "Partly cloudy", "pressure": 1015, "visibility": 10000, "sunrise": "2024-02-15T06:45:00Z", "sunset": "2024-02-15T17:30:00Z", "alerts": [], "lastUpdated": "2024-02-15T12:00:00Z" }