curl --request GET \
--url https://api.example.com/v1/timezones{
"data": [
{
"value": "<string>",
"label": "<string>",
"offset": "<string>"
}
],
"default": "<string>"
}Get list of supported timezones
curl --request GET \
--url https://api.example.com/v1/timezones{
"data": [
{
"value": "<string>",
"label": "<string>",
"offset": "<string>"
}
],
"default": "<string>"
}curl -X GET "https://app.transcord.app/api/v1/timezones" \
-H "Authorization: Bearer tr_live_your_api_key"
{
"data": [
{ "value": "America/New_York", "label": "Eastern Time (ET)", "offset": "UTC-5/-4" },
{ "value": "America/Chicago", "label": "Central Time (CT)", "offset": "UTC-6/-5" },
{ "value": "America/Denver", "label": "Mountain Time (MT)", "offset": "UTC-7/-6" },
{ "value": "America/Los_Angeles", "label": "Pacific Time (PT)", "offset": "UTC-8/-7" },
{ "value": "America/Phoenix", "label": "Arizona (no DST)", "offset": "UTC-7" },
{ "value": "America/Anchorage", "label": "Alaska Time", "offset": "UTC-9/-8" },
{ "value": "Pacific/Honolulu", "label": "Hawaii Time", "offset": "UTC-10" },
{ "value": "Europe/London", "label": "London (GMT/BST)", "offset": "UTC+0/+1" },
{ "value": "Europe/Paris", "label": "Paris (CET)", "offset": "UTC+1/+2" },
{ "value": "Asia/Tokyo", "label": "Tokyo (JST)", "offset": "UTC+9" },
{ "value": "UTC", "label": "UTC", "offset": "UTC+0" }
],
"default": "America/New_York"
}