> ## 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 times for a date

> Returns the available session times for the experience on a specific date, with price tiers and remaining capacity per tier.



## OpenAPI

````yaml get /v2/experiences/{experienceId}/sessions/{date}
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}/sessions/{date}:
    get:
      tags:
        - Availability
      summary: Get available times for a date
      description: >-
        Returns the available session times for the experience on a specific
        date, with price tiers and remaining capacity per tier.
      operationId: SchedulingPublicController_getAvailableTimesForDate
      parameters:
        - $ref: '#/components/parameters/experienceIdPath_17'
        - $ref: '#/components/parameters/datePath'
        - $ref: '#/components/parameters/ignoreCutOffHoursQuery_18'
        - $ref: '#/components/parameters/latestQuery_19'
        - $ref: '#/components/parameters/privateQuery_20'
      responses:
        '200':
          description: Available times for a date.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsSessionDto'
              example:
                items:
                  - startTime: '10:00: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_17:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    datePath:
      name: date
      in: path
      schema:
        $ref: '#/components/schemas/LocalDate'
      required: true
      description: The date to query (YYYY-MM-DD).
      example: '2026-08-15'
    ignoreCutOffHoursQuery_18:
      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_19:
      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_20:
      name: private
      in: query
      schema:
        type: boolean
      description: Set to `true` to return only private (exclusive buy-out) sessions.
      required: false
  schemas:
    ItemsSessionDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            $ref: '#/components/schemas/SessionDto'
      required:
        - items
    LocalDate:
      type: string
      format: date
      example: '2026-08-15'
    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).

````