Tools / Timezone Converter
Timezone Converter icon

Timezone Converter

Time zones, conversions & DST info

Look up current time in any city, convert between time zones, get DST transition info, or browse timezone identifiers by region. Accepts city names — no IANA codes needed. For scheduling, global teams, and travel apps.

4 skillsv0.02
Current Time

Get the current time in any timezone, city, or geographic coordinates. Supports 80+ city names, IANA timezone codes, or latitude/longitude.

Returns: Current date, time, day of week, and DST status for the specified timezone
Parameters
timezonestringTimezone name (e.g. "America/New_York") or city name (e.g. "Tokyo", "New York"). Use this OR latitude+longitude.
latitudenumberLatitude (-90 to 90). Use with longitude instead of timezone.
longitudenumberLongitude (-180 to 180). Use with latitude instead of timezone.
Example
Get current time in Tokyo
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "timezone-converter",
  "skill": "current_time",
  "input": {
    "timezone": "Tokyo"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Convert Time

Convert a specific time (or the current time) from one timezone to another. Supports IANA timezone names and city names. Omit the datetime parameter to convert the current time.

Returns: Original and converted times with full date, time, day of week, and DST status for both timezones
Parameters
from_timezone *stringSource timezone or city name (e.g. "America/New_York", "London", "Tokyo")
to_timezone *stringTarget timezone or city name (e.g. "Asia/Tokyo", "Sydney", "Paris")
datetimestringDate and time to convert in "YYYY-MM-DD HH:MM:SS" format. Omit or set to "now" to convert the current time.
Example
Convert current time from New York to Tokyo
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "timezone-converter",
  "skill": "convert_time",
  "input": {
    "from_timezone": "New York",
    "to_timezone": "Tokyo"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Timezone Info

Get detailed information about a timezone including current UTC offset, standard offset, daylight saving time status, and DST transition dates. Supports IANA timezone names and city names.

Returns: UTC offset, standard offset, DST status, and DST transition dates for the timezone
Parameters
timezone *stringTimezone name (e.g. "America/New_York", "Europe/London") or city name (e.g. "Tokyo", "New York", "Sydney")
Example
Get timezone info for New York
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "timezone-converter",
  "skill": "timezone_info",
  "input": {
    "timezone": "New York"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
List Timezones

List all available IANA timezones. Optionally filter by region prefix like "America", "Europe", "Asia", "Africa", "Pacific", "Australia", "Atlantic", or "Indian".

Returns: List of IANA timezone identifiers, optionally filtered by region
Parameters
regionstringOptional region prefix to filter by (e.g. "America", "Europe", "Asia", "Pacific")
Example
List all European timezones
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "timezone-converter",
  "skill": "list_timezones",
  "input": {
    "region": "Europe"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.022026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.012026-03-20
  • Initial release with current time, time conversion, timezone info, and timezone listing

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"timezone-converter","skill":"current_time","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Schedule Cross-Timezone Meetings

Schedule Cross-Timezone Meetings

Find meeting times that work across multiple timezones without anyone joining at 3 AM.

Timezone Converter icon
Timezone Converter
4 agent guides
Open Plan Global Product Launches

Plan Global Product Launches

Coordinate product launches and announcements across timezones for maximum global impact.

Timezone Converter icon
Timezone Converter
4 agent guides
Open Search Papers by Topic

Search Papers by Topic

Find relevant academic papers on any research topic across millions of scholarly publications.

Academic Research icon
Academic Research
4 agent guides
Open Geocode Addresses to Coordinates

Geocode Addresses to Coordinates

Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.

Address Geocoding icon
Address Geocoding
4 agent guides
View all use cases for Timezone Converter

Workflows

Open Global Team Coordinator

Global Team Coordinator

Coordinate distributed teams across timezones, holidays, and languages with one unified workflow.

Timezone Converter icon
Timezone Converter
Public Holidays icon
Public Holidays
Weather Forecast icon
Weather Forecast
Translate icon
Translate
4 steps4 tools
Open Business Trip Planner

Business Trip Planner

Plan business trips with flights, hotels, currency conversion, weather, and timezone alignment.

Flight Search icon
Flight Search
Hotel Search icon
Hotel Search
Currency Exchange icon
Currency Exchange
Weather Forecast icon
Weather Forecast
Timezone Converter icon
Timezone Converter
5 steps5 tools
Open Remote Team Standup

Remote Team Standup

Run informed standups with timezone awareness, holiday flags, and weather disruption alerts.

Timezone Converter icon
Timezone Converter
Public Holidays icon
Public Holidays
Weather Forecast icon
Weather Forecast
3 steps3 tools

Frequently Asked Questions

Can I get the current time in a city without knowing its IANA code?

Yes. `current_time` accepts city names directly, so you can ask for Tokyo, New York, or similar locations without looking up a timezone ID first.

How do I convert time between two places?

Use `convert_time` with a source timezone and a destination timezone. If you leave out `datetime`, it converts the current time instead.

Can I check DST and UTC offset details?

Yes. `timezone_info` shows the current UTC offset, standard offset, DST status, and the next transition dates for that timezone.

How do I browse valid timezone names?

Use `list_timezones` to browse IANA timezone identifiers by region, such as Europe or America.