Returns all available timezone abbreviations in a standardized list. Access via MCP in Cursor or Windsurf for AI-driven scheduling tasks, or GET /v1/time/timezones for direct integration. Perfect for validating user input or populating timezone selectors. Returns common abbreviations like UTC, EST, PST alongside regional codes.
curl "https://tinyfn.io/v1/time/timezones" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/time/timezones', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/time/timezones',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's time/timezone tools:
{
"mcpServers": {
"tinyfn-time": {
"url": "https://tinyfn.io/mcp/time",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Returns standard abbreviations like UTC, EST, PST, GMT, and regional codes. Includes both standard and daylight saving variants (EST/EDT, PST/PDT).
Call this endpoint first to get the valid list, then check user input against it. Claude Code and Cursor can use this for form validation or scheduling logic.
No, only currently recognized timezone abbreviations. For historical or deprecated zones, use timezone conversion tools with full IANA database support.
This lists abbreviations only. For actual time conversion between zones, use the timezone conversion endpoints that handle offsets and DST rules.
Yes, the returned list works perfectly for timezone selectors. Each abbreviation is standardized and user-friendly for interface elements.
Get your free API key and start using List Timezones in seconds.
Get Free API Key