← Back to catalog
geonames.place.timezone
mock data$0.001 / callGeoNames Timezone Lookup
Look up the timezone for any coordinates on Earth using the GeoNames database. Returns IANA timezone ID (e.g. "America/New_York", "Europe/London"), GMT offset, DST offset, raw (winter) offset, current local time, today's sunrise and sunset times (local), and the country at those coordinates. Useful for scheduling tasks across time zones, converting UTC timestamps, or annotating location data with timezone context. CC BY 4.0 open data, no upstream cost.
Input schema
language
stringISO 639-1 language code for the country name in the response (e.g. "en", "de")
latituderequired
numberLatitude of the location to look up (-90 to 90, e.g. 40.7128 for New York City)
longituderequired
numberLongitude of the location to look up (-180 to 180, e.g. -74.0060 for New York City)
Call via REST
curl -X POST https://unifyapi.pro/api/call/geonames.place.timezone \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"language":"<language>","latitude":0,"longitude":0}'