Timezone Converter
Convert a timestamp from one timezone to another
/v1/geo/timezone-convert
curl "https://geo.toolkitapi.io/v1/geo/timezone-convert?timestamp=2026-03-31T14:30:00&from=America/New_York&to=Europe/London"
import httpx
resp = httpx.get(
"https://geo.toolkitapi.io/v1/geo/timezone-convert?timestamp=2026-03-31T14:30:00&from=America/New_York&to=Europe/London",
)
print(resp.json())
const resp = await fetch("https://geo.toolkitapi.io/v1/geo/timezone-convert?timestamp=2026-03-31T14:30:00&from=America/New_York&to=Europe/London", {
});
const data = await resp.json();
console.log(data);
# See curl example
{
"from_timezone": "America/New_York",
"to_timezone": "Europe/London",
"from_time": "2026-03-31T14:30:00-04:00",
"to_time": "2026-03-31T19:30:00+01:00",
"offset_diff_hours": 5.0
}
Try It Live
Description
How to Use
1. Pass the timestamp in ISO 8601 format in the `timestamp` parameter (e.g. `2026-03-31T14:30:00`).
2. Set `from` to the source IANA timezone and `to` to the target IANA timezone.
3. Read `to_time` for the converted result and `offset_diff_hours` to understand the time difference.
About This Tool
Use the Timezone Converter to convert any ISO 8601 timestamp from one IANA timezone to another. The response includes the converted time in both timezones and the offset difference in hours, automatically accounting for Daylight Saving Time.
This is useful for scheduling applications, international collaboration tools, and any system that needs to display times across multiple timezones.
Why Use This Tool
- Meeting schedulers — Convert meeting times across participant timezones
- International shipping — Display estimated delivery times in the recipient's local time
- Log correlation — Convert timestamps from distributed systems to a common timezone
- Travel apps — Show local arrival/departure times for flights
Frequently Asked Questions
Does this handle Daylight Saving Time?
What timezone format should I use?
Can I convert timezone-aware timestamps?
Start using Timezone Converter now
Get your free API key and make your first request in under a minute.