Api — Openweathermap
Error response example:
"weather": ["main": "Clear", "description": "clear sky"], "main": "temp": 22.5, "feels_like": 21.8, "humidity": 65, "pressure": 1012 , "wind": "speed": 3.1, "deg": 200, "name": "Tokyo"
| Plan | Rate Limit | Features | |-------------|----------------------------|-------------------------------------------| | Free | 60 calls/min | Current weather, 5-day forecast, air pollution | | Startup | 60 calls/min | + hourly forecast, 40+ years history | | Developer | 600 calls/min (or higher) | + daily forecast, weather maps, bulk download | | Professional| Custom | + unlimited API calls, enterprise SLAs | openweathermap api
| Code | Meaning | |------|-----------------------------| | 200 | Success | | 400 | Bad request (invalid params)| | 401 | Invalid API key | | 404 | City/location not found | | 429 | Too many requests (rate limit exceeded)| | 500 | Server error |
Developers needing a reliable, easy-to-integrate weather API with global coverage and moderate throughput requirements. API Documentation: https://openweathermap.org/api Sign up for API key: https://home.openweathermap.org/users/sign_up and historical air quality data (CO
curl "https://api.openweathermap.org/data/2.5/air_pollution?lat=35.68&lon=139.76&appid=YOUR_API_KEY" OpenWeatherMap returns standard HTTP status codes:
Returns data every 3 hours for the next 5 days. pressure | | Units | Metric
API key ( appid ) required for all requests. 2. Key Features | Feature | Description | |-----------------------|-----------------------------------------------------------------------| | Real-time data | Current weather for any location (city name, coordinates, ZIP, city ID) | | 5-day forecast | 3-hour step forecast, up to 5 days | | 16-day daily forecast | Daily summaries (paid plans) | | Historical data | Hourly or daily historical records (paid plans) | | Air pollution | Current, forecasted, and historical air quality data (CO, NO₂, O₃, PM2.5, PM10) | | Weather maps | Tile layers for wind, temp, precipitation, pressure | | Units | Metric, imperial, or Kelvin (default) | | Multilingual support | Weather descriptions in 40+ languages | 3. API Endpoints (Selected) 3.1 Current Weather Data Endpoint: /weather