v1

latestOpenAPI 3.0.32026-07-131670112.4 KB
Public

Get available slots for a date

Return bookable slots for a public event type on a specific date in the requested timezone.

get/v1/slots/{username}/{event_slug}

Path parameters

usernamestring required
event_slugstring required

Query parameters

datestring required

YYYY-MM-DD

timezonestring

Response

Default Response

object required

Example response

{
  "date": "2026-03-20",
  "timezone": "America/Chicago",
  "event_type": {
    "title": "Incident Triage",
    "duration_minutes": 30,
    "appointment_label": "assignment",
    "location_type": "video",
    "location": "Google Meet",
    "custom_fields": "[]",
    "description": "Quick ops intake call"
  },
  "slots": [
    "2026-03-20T14:00:00.000Z",
    "2026-03-20T14:30:00.000Z"
  ]
}