Schedule Cross-Timezone Meetings
Find meeting times that work across multiple timezones without anyone joining at 3 AM.
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.
Get the current time in any timezone, city, or geographic coordinates. Supports 80+ city names, IANA timezone codes, or latitude/longitude.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "timezone-converter",
"skill": "current_time",
"input": {
"timezone": "Tokyo"
}
}' \
https://api.toolrouter.com/v1/tools/callConvert 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.
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/callGet 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.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "timezone-converter",
"skill": "timezone_info",
"input": {
"timezone": "New York"
}
}' \
https://api.toolrouter.com/v1/tools/callList all available IANA timezones. Optionally filter by region prefix like "America", "Europe", "Asia", "Africa", "Pacific", "Australia", "Atlantic", or "Indian".
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "timezone-converter",
"skill": "list_timezones",
"input": {
"region": "Europe"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"timezone-converter","skill":"current_time","input":{}}' \
https://api.toolrouter.com/v1/tools/callFind meeting times that work across multiple timezones without anyone joining at 3 AM.
Coordinate product launches and announcements across timezones for maximum global impact.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Coordinate distributed teams across timezones, holidays, and languages with one unified workflow.
Plan business trips with flights, hotels, currency conversion, weather, and timezone alignment.
Run informed standups with timezone awareness, holiday flags, and weather disruption alerts.
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.
Use `convert_time` with a source timezone and a destination timezone. If you leave out `datetime`, it converts the current time instead.
Yes. `timezone_info` shows the current UTC offset, standard offset, DST status, and the next transition dates for that timezone.
Use `list_timezones` to browse IANA timezone identifiers by region, such as Europe or America.