timezone_convert
Convert an ISO-8601 datetime from one IANA timezone to another while preserving the same instant, including daylight-saving-aware wall times such as Toronto to Tokyo.
Use when:
What time is 3pm Toronto in Tokyo?
Convert an ISO-8601 datetime from America/New_York to Europe/London
Show the same instant in another IANA timezone with DST-aware offsets
Do not use when:
Only convert between Unix epoch and ISO-8601 without changing timezone (use timestamp_convert)
Convert length, mass, or temperature units (use unit_convert)
Guess a city timezone from a postal address without an IANA zone id
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| datetime | Yes | ISO-8601 datetime, with or without offset | |
| to_timezone | Yes | IANA timezone for output | |
| from_timezone | Yes | IANA timezone for interpreting naive datetimes |