Skip to main content
GET
/
api
/
v1
/
availability-types
Get all availability types
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/availability-types \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Availability types retrieved successfully",
  "data": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Standard Meeting",
      "value": "standard",
      "description": "Standard 30-minute meeting",
      "enable_appointments": true,
      "default_duration": 30,
      "buffer_time": 5,
      "require_approval": false
    }
  ]
}

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

Availability types retrieved successfully

success
boolean

Indicates whether the request completed successfully. True for successful responses; false for documented error responses.

Example:

true

message
string

Human-readable response message. Safe to display in logs or simple client notifications; use structured fields for program logic.

Example:

"Availability types retrieved successfully"

data
object[]