Documentation
This API provides a simple way to get weather forecasts. Perfect for educational projects, testing and prototyping applications where weather forecast functionality is required.
The API does not require authentication and is completely free. You can use it in your projects without restrictions.
If you pass GET parameters named 'date' and 'city' to the API, it will return the weather forecast for the specified city and date.
Main Features
- Generating weather forecasts
- Simple HTTP interface
- JSON response format
- No authentication required
- Free and without limitations
- CORS support
Response Format
{
"city": "Minsk",
"date": "23.11.2025",
"temperature": {
"min": 3,
"max": 6
},
"condition": "Fog",
"wind": {
"speed_kph": 16,
"direction": "N"
},
"humidity_percent": 95
}