Find geolocation with ip address
Retrieves detailed geolocation information including city, country, coordinates, and timezone for a given IP address.
import requests
api_key = 'YOUR_API_KEY'
ip_address = '81.5.52.190' # Example IP address
url = f'https://ipinfo.io/{ip_address}/json?token={api_key}'
response = requests.get(url)
data = response.json()
print(data)Last 50 checks (10 min intervals)