Skip to main content
GET
/
api
/
v1
/
appointment-requests
/
available-slots
Get available time slots for a schedule
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/appointment-requests/available-slots \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Available slots retrieved successfully",
  "data": {
    "schedule_uuid": "550e8400-e29b-41d4-a716-446655440000",
    "schedule_name": "Dr. Smith - General Practice",
    "date": "2025-11-25",
    "slots": []
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

schedule_uuid
string<uuid>
required

UUID of the schedule

Example:

"550e8400-e29b-41d4-a716-446655440000"

date
string<date>
required

Date to check availability (YYYY-MM-DD, must be today or future)

Example:

"2025-11-25"

Response

Successful operation

success
boolean
Example:

true

message
string
Example:

"Available slots retrieved successfully"

data
object