Skip to main content
GET
/
api
/
v1
/
timezone
List supported timezones
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/timezone \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Timezones retrieved successfully",
  "data": {
    "items": [
      {
        "value": "Europe/Rome",
        "label": "(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna",
        "abbr": "CET",
        "offset": 1
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Response

200 - application/json

Timezones retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Timezones retrieved successfully"

data
object