Display real-time clocks for multiple locations on dashboards and displays.
Operations teams and global businesses need to monitor multiple timezones simultaneously. Browser-based clocks can drift and don't handle DST transitions gracefully.
Fetch accurate current time for each location from our API. Update periodically to ensure accuracy and automatically handle DST transitions.
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);