# List Event Availability Get availability for events belonging to an experience. Returns a paginated list of event availability information. Use the cursor parameter to paginate through results. Endpoint: GET /v1/event-availabilities Version: 0.1.0 Security: OAuth2 ## Query parameters: - `experienceId` (string, required) The unique identifier of the experience to query events for. - `from` (string) Filter events starting from this timestamp (inclusive). RFC 3339 format (e.g., 2025-10-09T08:00:00Z). - `to` (string) Filter events up to this timestamp (exclusive). RFC 3339 format (e.g., 2025-10-10T18:00:00Z). - `cursor` (string) Pagination cursor for fetching the next page of results. An empty string or omitted value indicates the start of the list. - `limit` (integer) Maximum number of items to return per page. Defaults to 50, maximum 100. ## Response 200 fields (application/json): - `items` (array, required) Availability information for events matching the query. - `items.event_id` (string, required) The unique identifier of the event. - `items.available` (boolean, required) Whether the event is available for booking. This is false if any constraint makes the event unavailable. - `items.constraints` (array, required) List of constraints that affect availability. Each constraint represents a different factor limiting availability. - `next` (string) The cursor for the next page. An empty string or no value indicates the end of the list. ## Response 400 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response 403 fields (application/json): - `message` (string, required) - `code` (string, required) ## Response default fields (application/json): - `message` (string, required) - `code` (string, required)