Get the current time for any city worldwide. Returns timezone, DST information, and formatted time strings in multiple formats. Perfect for global applications and meeting schedulers.
{
"status": "ok",
"error": null,
"data": {
"search": "San Francisco",
"foundCities": [
{
"city": "San Francisco",
"city_ascii": "San Francisco",
"country": "Argentina",
"iso2": "AR",
"iso3": "ARG",
"province": "Córdoba",
"timezone": "America/Argentina/Cordoba",
"time": "19:33",
"time24": "19:33:04",
"time12": "07:33:04 PM",
"date": "2025-12-16",
"day": "Tuesday",
"month": "December",
"year": "2025",
"unix": "1765924384",
"dst": false,
"dst_start": "2025-12-16 19:33:04",
"dst_end": "2025-12-16 19:33:04",
"dst_name": "-03"
},
{
"city": "San Francisco",
"city_ascii": "San Francisco",
"country": "United States of America",
"iso2": "US",
"iso3": "USA",
"province": "California",
"state_ansi": "CA",
"timezone": "America/Los_Angeles",
"time": "14:33",
"time24": "14:33:04",
"time12": "02:33:04 PM",
"date": "2025-12-16",
"day": "Tuesday",
"month": "December",
"year": "2025",
"unix": "1765924384",
"dst": false,
"dst_start": "2025-12-16 14:33:04",
"dst_end": "2025-12-16 14:33:04",
"dst_name": "PST"
}
]
}
}






Get the current time for any city worldwide. Returns timezone, DST information, and formatted time strings in multiple formats. Perfect for global applications and meeting schedulers.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/worldtime?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.
{ search, foundCities, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseUse the World Time API to display meeting times in each participant's local timezone. Convert proposed times accurately and show current time in each location.
Fetch accurate current time for each location from our API. Update periodically to ensure accuracy and automatically handle DST transitions.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/worldtime?city=San%20Francisco", {
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.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog