Get comprehensive timezone information including current time, date, UTC offset, and daylight saving time status. Supports all IANA timezone identifiers. Perfect for scheduling applications, world clocks, and international business tools.
{
"status": "ok",
"error": null,
"data": {
"timezone": "Africa/Harare",
"timezone_offset": 120,
"date": "2025-12-17",
"time": "00:30",
"time24": "00:30:23",
"time12": "12:30:23 AM",
"day": "Wednesday",
"month": "December",
"year": "2025",
"unix": "1765924223",
"dst": false,
"dst_start": "2025-12-17 00:30:23",
"dst_end": "2025-12-17 00:30:23",
"dst_name": "CAT"
}
}






Get comprehensive timezone information including current time, date, UTC offset, and daylight saving time status. Supports all IANA timezone identifiers. Perfect for scheduling applications, world clocks, and international business tools.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/timezonelookup?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ timezone, timezone_offset, date, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseShow meeting times in each participant timezone using real-time timezone data. Account for DST automatically to prevent scheduling mistakes.
Display accurate current times for user-selected timezones. Update in real-time and show relevant details like DST status and date.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/timezonelookup?city=Harare", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
Learn how timezones work and why they are more complex than simple UTC offsets.
Best practices for handling DST transitions in your applications.
Architecture and design patterns for applications that work with times across timezones.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog