Place names and other geographical data
GeoNames provides web services for searching place names, retrieving geographical data, and finding postal codes worldwide.
import requests
username = 'YOUR_USERNAME'
placename = 'Zurich'
url = f"http://api.geonames.org/postalCodeSearch?placename={placename}&username={username}"
response = requests.get(url)
print(response.json())Last 50 checks (10 min intervals)