Weather
Weatherstack is a free API providing real-time, historical, and forecast weather data for millions of global locations.
import requests
url = "https://api.weatherstack.com/current"
params = {
"access_key": "YOUR_API_KEY",
"query": "New York"
}
response = requests.get(url, params=params)
print(response.json())Last 50 checks (10 min intervals)