Sunset and sunrise times for a given latitude and longitude
Provides free sunset and sunrise times for a given latitude and longitude for any date.
import requests
url = "https://api.sunrise-sunset.org/json"
params = {
"lat": "40.7128",
"lng": "-74.0060",
"date": "2024-01-01"
}
response = requests.get(url, params=params)
print(response.json())Last 50 checks (10 min intervals)