> ## Documentation Index
> Fetch the complete documentation index at: https://docs.way.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get available dates with sessions

> Returns each date in the range together with its available sessions: start times, duration, price tiers, and remaining capacity per tier. Ideal for building a date picker.



## OpenAPI

````yaml get /v2/experiences/{experienceId}/dates-with-sessions/{from}/{to}
openapi: 3.0.0
info:
  title: Way Partner API
  description: >-
    REST API for Way partners: list experiences, check availability, run
    checkout, and manage bookings.
  version: '1.0'
servers:
  - url: https://api.letsway.com
    description: Production.
  - url: https://api.staging.letsway.com
    description: Staging.
security: []
tags:
  - name: Listings
    description: 'Retrieve the listings a brand offers: experiences, events, and resources.'
  - name: Availability
    description: Dates, sessions, and price tiers for scheduling a booking.
  - name: Carts & Checkout
    description: >-
      Payment intents and booking creation. The cart ID is a client-generated
      UUID; there is no create-cart endpoint.
  - name: Bookings
    description: Retrieve, cancel, and reschedule bookings.
  - name: Experiences
    description: Experience details, settings, custom questions, reviews, and hosts.
  - name: Brand Configuration
    description: Brand settings, taxonomy, terms, and promotion code validation.
  - name: Waitlists
    description: Waitlists for sold-out sessions and invitation handling.
  - name: Integrations
    description: Configured integrations, analytics, and room-charge validation.
  - name: Organizations
    description: Organization-level access across brands.
paths:
  /v2/experiences/{experienceId}/dates-with-sessions/{from}/{to}:
    get:
      tags:
        - Availability
      summary: Get available dates with sessions
      description: >-
        Returns each date in the range together with its available sessions:
        start times, duration, price tiers, and remaining capacity per tier.
        Ideal for building a date picker.
      operationId: SchedulingPublicController_getAvailableDatesWithSessions
      parameters:
        - $ref: '#/components/parameters/experienceIdPath_12'
        - $ref: '#/components/parameters/fromPath_13'
        - $ref: '#/components/parameters/toPath_14'
        - $ref: '#/components/parameters/ignoreCutOffHoursQuery'
        - $ref: '#/components/parameters/latestQuery_15'
        - $ref: '#/components/parameters/privateQuery_16'
      responses:
        '200':
          description: Available dates with sessions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsDatesWithSessionsDto'
              example:
                items:
                  - date: '2026-07-14'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-15'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-16'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-17'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 7
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 7
                  - date: '2026-07-18'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-19'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-20'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
                  - date: '2026-07-21'
                    sessions:
                      - startTime: '10:00'
                        duration: PT1H
                        supportedParticipantsCount: 10
                        priceTiers:
                          - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                            name: Participant
                            price: 100
                        availableQuantityPerTier:
                          Participant: 10
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    experienceIdPath_12:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    fromPath_13:
      name: from
      in: path
      schema:
        $ref: '#/components/schemas/LocalDate'
      required: true
      description: Start of the date range (YYYY-MM-DD), inclusive.
      example: '2026-08-15'
    toPath_14:
      name: to
      in: path
      schema:
        $ref: '#/components/schemas/LocalDate'
      required: true
      description: End of the date range (YYYY-MM-DD), inclusive.
      example: '2026-08-22'
    ignoreCutOffHoursQuery:
      name: ignoreCutOffHours
      in: query
      schema:
        type: boolean
      description: >-
        When `true`, includes sessions that are inside the experience's booking
        cut-off window.
      required: false
    latestQuery_15:
      name: latest
      in: query
      schema:
        type: boolean
      description: >-
        When `true`, uses the experience's latest saved version instead of the
        published one - for previewing unpublished changes.
      required: false
    privateQuery_16:
      name: private
      in: query
      schema:
        type: boolean
      description: Set to `true` to return only private (exclusive buy-out) sessions.
      required: false
  schemas:
    ItemsDatesWithSessionsDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            $ref: '#/components/schemas/DatesWithSessionsDto'
      required:
        - items
    LocalDate:
      type: string
      format: date
      example: '2026-08-15'
    DatesWithSessionsDto:
      type: object
      properties:
        date:
          description: date.
          type: array
          items:
            type: string
          example: '2026-07-14'
        sessions:
          description: List of sessions.
          type: array
          items:
            $ref: '#/components/schemas/SessionDto'
      required:
        - date
        - sessions
    SessionDto:
      type: object
      properties:
        startTime:
          type: string
          description: Start time of the session in ISO format (HH:mm:ss)
          example: '14:30:00'
        duration:
          type: number
          description: Duration of the session in minutes.
          example: 90
        supportedParticipantsCount:
          type: number
          description: Number of participants supported in the session.
          example: 10
        priceTiers:
          description: List of price tiers available for this session.
          type: array
          items:
            $ref: '#/components/schemas/PriceTierDto'
        withinOnlineBookingCutoffWindow:
          type: boolean
          description: >-
            Indicates if this session is within the online booking cutoff
            window.
          example: true
        availableQuantityPerTier:
          type: object
          description: Available quantity per price tier.
          example:
            tier-123: 5
            tier-456: 2
      required:
        - startTime
        - duration
        - supportedParticipantsCount
        - priceTiers
    PriceTierDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the price tier.
          example: tier-123
        name:
          type: string
          description: The name of the price tier.
          example: VIP
        price:
          type: number
          description: Price associated with the tier.
          example: 100
        maxQuantity:
          type: number
          description: Maximum quantity allowed for this price tier.
          example: 5
          nullable: true
      required:
        - id
        - name
        - price
  securitySchemes:
    Brand-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your brand's secret API key, e.g. `Bearer
        way_sk_live_bhEqcn0i1fRoUEHBPjJkQA`. Older `Way-Brand-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).
    Organization-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your organization's secret API key, e.g. `Bearer
        way_sk_live_ohEqcn0i1fRoUEHBPjJkQA`. Older `Way-Organization-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).

````