Help users schedule meetings across timezones with accurate local times.
Scheduling meetings across timezones is error-prone. Users miscalculate time differences, forget about DST, or use outdated UTC offsets.
Show meeting times in each participant timezone using real-time timezone data. Account for DST automatically to prevent scheduling mistakes.
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);