---
title: Convert Timezone API
slug: timezone-convert
url: https://apyhub.com/dosvak/service/timezone-convert
provider: Dosvak LLC
categories: [Geolocation, Standard Data]
tags: [timezones, datetime-conversion, iana-timezone, timestamp, scheduling]
auth: api_key
---

# Convert Timezone API

Convert a datetime string between two IANA timezones. Returns the original input and converted result for scheduling and timestamp normalization.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| GET | `` | What it does Converts the provided datetime string from one IANA timezone to another and returns th… | 10 |

## About

## What it does
Timezone Convert converts a datetime string from one IANA timezone to another. Send `dt`, `from_tz`, and `to_tz`, and get back the original input alongside the converted `result` string.

Use it when your application needs to display or store the same moment in a different timezone without doing the conversion logic yourself. It fits scheduling tools, calendar workflows, booking systems, and any backend that needs to normalize timestamps across regions.

The API accepts only the three query fields defined in the schema, so it stays simple to integrate. `dt` is the datetime string you want to convert, `from_tz` is the source IANA timezone, and `to_tz` is the destination IANA timezone. The response returns `input`, `from_tz`, `to_tz`, and `result` so you can log the conversion or pass it through to the next step in your workflow.

If you work with international users, this gives you a lightweight way to keep timestamps consistent across timezones.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/dosvak/service/timezone-convert
