Retrieve comprehensive weather data for all available locations. This API provides detailed information including temperature, wind speed, humidity, atmospheric pressure, weather conditions, sunrise and sunset times, UV index, and visibility. Suitable for applications requiring extensive weather insights across multiple regions.

http://api.weatherapi.com/v1/current.json?key=a8d59a49f7d54862ac2182625242806&q=India

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 { "location": { "name": "New Delhi", "region": "Delhi", "country": "India", "lat": 28.6, "lon": 77.2, "tz_id": "Asia/Kolkata", "localtime_epoch": 1719599317, "localtime": "2024-06-28 23:58" }, "current": { "last_updated_epoch": 1719598500, "last_updated": "2024-06-28 23:45", "temp_c": 30.1, "temp_f": 86.2, "is_day": 0, "condition": { "text": "Mist", "icon": "//cdn.weatherapi.com/weather/64x64/night/143.png", "code": 1030 }, "wind_mph": 2.2, "wind_kph": 3.6, "wind_degree": 257, "wind_dir": "WSW", "pressure_mb": 1000.0, "pressure_in": 29.53, "precip_mm": 0.0, "precip_in": 0.0, "humidity": 94, "cloud": 50, "feelslike_c": 32.2, "feelslike_f": 89.9, "windchill_c": 33.5, "windchill_f": 92.3, "heatindex_c": 38.8, "heatindex_f": 101.8, "dewpoint_c": 22.7, "dewpoint_f": 72.8, "vis_km": 3.2, "vis_miles": 1.0, "uv": 1.0, "gust_mph": 4.0, "gust_kph": 6.5 } }

Access specific weather data for London. This endpoint delivers detailed weather information such as temperature, wind speed, humidity, atmospheric pressure, weather conditions, sunrise and sunset times, UV index, and visibility. Ideal for applications focused on urban weather forecasting in London.

http://api.weatherapi.com/v1/current.json?key=a8d59a49f7d54862ac2182625242806&q=london

Example-> JSON data

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 { "location": { "name": "London", "region": "City of London, Greater London", "country": "United Kingdom", "lat": 51.52, "lon": -0.11, "tz_id": "Europe/London", "localtime_epoch": 1719599961, "localtime": "2024-06-28 19:39" }, "current": { "last_updated_epoch": 1719599400, "last_updated": "2024-06-28 19:30", "temp_c": 19.1, "temp_f": 66.4, "is_day": 1, "condition": { "text": "Partly cloudy", "icon": "//cdn.weatherapi.com/weather/64x64/day/116.png", "code": 1003 }, "wind_mph": 11.9, "wind_kph": 19.1, "wind_degree": 260, "wind_dir": "W", "pressure_mb": 1016.0, "pressure_in": 30.0, "precip_mm": 0.0, "precip_in": 0.0, "humidity": 49, "cloud": 50, "feelslike_c": 19.1, "feelslike_f": 66.4, "windchill_c": 18.4, "windchill_f": 65.0, "heatindex_c": 18.4, "heatindex_f": 65.0, "dewpoint_c": 7.8, "dewpoint_f": 46.1, "vis_km": 10.0, "vis_miles": 6.0, "uv": 5.0, "gust_mph": 16.3, "gust_kph": 26.3 } }