Returns available time slots for a scheduling page identified by a shared link, within a date range.
This endpoint is used for shared or collective scheduling links where the event type is not directly accessible via an owner slug and event type slug combination.
Please note that access to this endpoint requires an active paid subscription.
This API requires either of the following scopes:
admin:fulltimetablecurl --request GET \
--url https://api.zeeg.me/v2/availability-by-shared-link/{sharedLink} \
--header 'Authorization: Bearer <token>'{
"ownerSlug": "shared",
"eventTypeSlug": "30min-discovery-call",
"schedulingUrl": "https://zeeg.me/shared/30min-discovery-call",
"duration": 30,
"firstAvailableDate": "2026-04-01",
"lastAvailableDate": "2026-04-14",
"timeZone": "Europe/Paris",
"timeZoneOffset": "+02:00",
"isNotAvailable": false,
"availability": [
{
"date": "2026-04-01",
"slots": [
"09:00",
"09:30",
"10:00",
"10:30",
"14:00",
"14:30",
"15:00"
]
},
{
"date": "2026-04-02",
"slots": [
"09:00",
"09:30",
"10:00",
"11:00",
"14:00",
"15:00"
]
},
{
"date": "2026-04-03",
"slots": []
},
{
"date": "2026-04-04",
"slots": []
},
{
"date": "2026-04-05",
"slots": [
"09:00",
"10:00",
"14:00",
"14:30"
]
}
],
"currentTime": "2026-03-20T12:00:00+00:00"
}The shared scheduling link identifier (e.g. the token from a shared or collective scheduling link URL).
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.
Set to 1 to include available host count for each time slot.
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.
Number of seats to book (for group event types).
x >= 1OK
curl --request GET \
--url https://api.zeeg.me/v2/availability-by-shared-link/{sharedLink} \
--header 'Authorization: Bearer <token>'{
"ownerSlug": "shared",
"eventTypeSlug": "30min-discovery-call",
"schedulingUrl": "https://zeeg.me/shared/30min-discovery-call",
"duration": 30,
"firstAvailableDate": "2026-04-01",
"lastAvailableDate": "2026-04-14",
"timeZone": "Europe/Paris",
"timeZoneOffset": "+02:00",
"isNotAvailable": false,
"availability": [
{
"date": "2026-04-01",
"slots": [
"09:00",
"09:30",
"10:00",
"10:30",
"14:00",
"14:30",
"15:00"
]
},
{
"date": "2026-04-02",
"slots": [
"09:00",
"09:30",
"10:00",
"11:00",
"14:00",
"15:00"
]
},
{
"date": "2026-04-03",
"slots": []
},
{
"date": "2026-04-04",
"slots": []
},
{
"date": "2026-04-05",
"slots": [
"09:00",
"10:00",
"14:00",
"14:30"
]
}
],
"currentTime": "2026-03-20T12:00:00+00:00"
}