---
title: "List Calendar Slots"
method: GET
path: "/v2/sessions"
tags: ["Calendar Slots"]
---

# List Calendar Slots

`GET /v2/sessions`

List all booked slots for an account. Option to include unbooked slots as well. Supports filtering on opening and stage as well as pagination

## Query parameters

- `funnel_id` string
- `exclude_conflicts` boolean
- `with_unbooked` boolean
- `stage_id` string
- `cursor` string
- `time` string
- `page` integer

## Response `200`

OK

- object
  - `sessions` Session[]
    - `id` string, required — The unique identifier of the available slot
    - `title` string, nullable — The name of the session
    - `max_attendees` integer — Maximum number of applicants that can attend
    - `stage_ids` string[] — List of unique identifiers of stages
    - `user_id` string — Unique identifier of the slot owner
    - `booked_slots_count` integer, required — Count of booked slots for the available slot
    - `date` string, date, required — The date of the available slot
    - `start_time` string, datetime, required — The start time of the available slot
    - `end_time` string, datetime, required — The end time of the available slot
    - `location` string — The location of the available slot
    - `instructions` string, nullable — Instructions for attendees
    - `unbooked_siblings_count` integer, nullable — Count of unbooked available slots with identical keys
    - `booked_siblings_count` integer, nullable — Count of booked available slots with identical keys
    - `live_video_room_url` string, nullable — URL for available slot online location
    - `any_stage_has_video_enabled` boolean, nullable — Indicates whether any stage is a live video stage
    - `event_type` string, required — The type of the event
    - `instant_interview_enabled` boolean, required — Indicates whether the event type is instant interview
    - `booked_slots` SessionBookedSlot[] — List of booked slots for the available slot
      - `id` string, required — The unique identifier of the booked slot
      - `applicant_showed` boolean, nullable — Indicator for whether the applicant attended
      - `applicant_is_still_on_stage` boolean, required — Indicator for whether the applicant is still on the stage associated to the slot
      - `complete` boolean, required — Indicator of whether the slot has been completed
      - `stage_title` string, required — Title of the stage associated with the booked slot
      - `stage_id` string, required — Unique identifier of the stage associated to the booked slot
      - `stage_external_id` string, required — Unique identifier of the stage associated to the booked slot (deprecated; refer to "stage_id")
      - `funnel_title` string, nullable — Title of the opening associated to the slot
      - `available_slot_location` string, nullable — The location of the booked slot
      - `applicant` BookedSlotApplicant, required
        - `id` string, required — The unique identifier of the applicant
        - `name` string, required — The name of the applicant
        - `email` string, required — The email of the applicant
        - `key` string, required — Unique key for the applicant
        - `phone_number` string, required — Phone number of the applicant
        - `stage_title` string — Title of the stage associated with the applicant
        - `external_id` string, required — The unique identifier of the applicant (deprecated; refer to "id")
        - `can_show` boolean, required — Deprecated
        - `data` object, required — Data collected about the applicant
        - `structured_data` object, required — Structured data collected about the applicant
  - `pagination` PaginationWithCursor
    - `first` integer — The first available page
    - `last` integer — The last available page
    - `previous` integer, nullable — The previous page
    - `current` integer — The current page
    - `next` integer, nullable — The next available page
    - `current_cursor` string — Cursor value for the current page
    - `next_cursor` string — Cursor value for the next page
  - `export_enabled` boolean

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/fountain/apis/hire-public-api.md) · [All operations](https://skmtc.net/fountain/apis/hire-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fountain/hire-public-api/versions/5f406c0e9462/schema)
