Weather
Live conditions for 12 Indian cities โ or any custom coordinates (lat/lon).
Endpointsโ
GET/weather?city=kolkata
City forecast (default: kolkata).
GET/weather?lat=28.61&lon=77.21
Custom coordinates โ
lon, lan ya lng teeno chalte hain.Query Parametersโ
| Parameter | Type | Default | Required | Description |
|---|---|---|---|---|
city | string | kolkata | โ | City name (see list below) |
lat | number | โ | โ | Custom latitude (-90 to 90) |
lon / lan / lng | number | โ | โ | Custom longitude (-180 to 180) |
Available Citiesโ
| City | City | City |
|---|---|---|
| kolkata | mumbai | delhi |
| chennai | bangalore | hyderabad |
| pune | jaipur | lucknow |
| ahmedabad | guwahati | bhopal |
Exampleโ
curl "https://api.apimitra.in/weather?city=kolkata"
{
"status": "ok",
"api": "weather",
"city": "kolkata",
"location": { "lat": 22.57, "lon": 88.36 },
"temperature": { "value": 29.6, "unit": "ยฐC" },
"humidity": { "value": 85, "unit": "%" },
"wind_speed": { "value": 5, "unit": "km/h" },
"condition": { "code": 3, "description": "Overcast" }
}
Custom Coordinatesโ
curl "https://api.apimitra.in/weather?lat=28.61&lon=77.21"
curl "https://api.apimitra.in/weather?lat=19.08&lan=72.88"
curl "https://api.apimitra.in/weather?lat=13.08&lng=80.27"
Weather Codesโ
| Code | Description | Code | Description |
|---|---|---|---|
| 0 | Clear sky | 61 | Light rain |
| 1 | Mainly clear | 63 | Rain |
| 2 | Partly cloudy | 65 | Heavy rain |
| 3 | Overcast | 80 | Light showers |
| 45 | Foggy | 95 | Thunderstorm |
| 51 | Light drizzle | 99 | Thunderstorm + heavy hail |