Get Available Time Slots
Query bookable time slots for a scheduling page by owner slug and event-type slug. Used as the first step of a programmatic booking flow.
Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
The slug of the calendar owner, a team slug, or shared for shared event types such as Round Robin ("R"), Flexi ("F"), or Collective ("C").
The slug of the event type / scheduling page.
Query Parameters
Start date in YYYY-MM-DD format.
"2026-04-01"
End date in YYYY-MM-DD format.
"2026-04-14"
IANA time zone identifier.
"Europe/Berlin"
Meeting duration in minutes. Defaults to the event type's configured duration.
30
Set to 1 to include available host count for each time slot (useful for Round Robin events). When enabled, slots will be returned as objects with time and availableHosts properties instead of simple time strings.
Email of the host to filter available slots for (useful for Round Robin events).
Slug of the host to filter available slots for (useful for Round Robin events).
When set to 1, the response will include the first available date for the scheduling page.
Number of seats to book (for group event types).
x >= 1Response
OK
- Empty slot arrays indicate dates with no availability.
- The
isNotAvailableflag indicates if the scheduling page has no availability during the time range. - When
withHostsCount=1is used in the request, slots are returned as objects containing both time and available host count. - When
hostEmailorhostSlugis used, the response will only include available slots for the specified host.