Documentation
Endpoint: Get Timezone Information
- URL:
https://api.i-as.dev/api/timezone
- Method: GET
- Description: Retrieves a list of timezones with filtering option.
Parameters:
filter
: (Optional) A query parameter to filter the timezones based on the search query.
Request Example:
GET https://api.i-as.dev/api/timezone?filter=Europe
Response Example:
{
"timeZones": [
{
"zoneName": "Europe/Paris",
"fullName": "Central European Time",
"region": "Europe",
"utcOffset": "UTC+01:00"
},
// More data
]
}
- Fields:
zoneName
: The name of the timezone.
fullName
: The full name of the timezone.
region
: The region to which the timezone belongs.
utcOffset
: The UTC offset of the timezone.