Timezone Converter
timezone_convertConvert a datetime between timezones using timezone names, coordinates, city addresses, IATA/ICAO codes, or UN/LOCODEs. Specify source and destination with any supported identifier.
Instructions
Convert a date/time from one timezone to another. Specify the source and destination timezone each using ONE of: timezone name (tz_from/tz_to), coordinates (lat/long_from + lat/long_to), city address (location_from/location_to), IATA code (iata_from/iata_to), ICAO code (icao_from/icao_to), or UN/LOCODE (locode_from/locode_to).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| time | Yes | Datetime to convert. Formats: 'yyyy-MM-dd HH:mm' or 'yyyy-MM-dd HH:mm:ss'. | |
| tz_from | No | Source timezone name (e.g. 'America/New_York'). Use ONE source type only. | |
| tz_to | No | Destination timezone name (e.g. 'Asia/Tokyo'). Use ONE destination type only. | |
| lat_from | No | Source latitude. Must be paired with 'long_from'. | |
| long_from | No | Source longitude. Must be paired with 'lat_from'. | |
| lat_to | No | Destination latitude. Must be paired with 'long_to'. | |
| long_to | No | Destination longitude. Must be paired with 'lat_to'. | |
| location_from | No | Source city/address (e.g. 'London, UK'). | |
| location_to | No | Destination city/address (e.g. 'New York, US'). | |
| iata_from | No | Source 3-letter IATA airport code (e.g. 'LHR'). | |
| iata_to | No | Destination 3-letter IATA airport code (e.g. 'JFK'). | |
| icao_from | No | Source 4-letter ICAO airport code (e.g. 'EGLL'). | |
| icao_to | No | Destination 4-letter ICAO airport code (e.g. 'KJFK'). | |
| locode_from | No | Source UN/LOCODE (e.g. 'GBLON'). | |
| locode_to | No | Destination UN/LOCODE (e.g. 'USNYC'). |