> ## 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 for an experience

> Returns the dates within the range that have at least one available session for the experience.



## OpenAPI

````yaml get /v2/experiences/{experienceId}/dates/{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/{from}/{to}:
    get:
      tags:
        - Availability
      summary: Get available dates for an experience
      description: >-
        Returns the dates within the range that have at least one available
        session for the experience.
      operationId: SchedulingPublicController_getAvailableDates
      parameters:
        - $ref: '#/components/parameters/experienceIdPath_9'
        - $ref: '#/components/parameters/fromPath'
        - $ref: '#/components/parameters/toPath'
        - $ref: '#/components/parameters/latestQuery_10'
        - $ref: '#/components/parameters/privateQuery_11'
      responses:
        '200':
          description: Available dates for an experience.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsDateFromToDto'
              example:
                items:
                  - '2026-07-14'
                  - '2026-07-15'
                  - '2026-07-16'
                  - '2026-07-17'
                  - '2026-07-18'
                  - '2026-07-19'
                  - '2026-07-20'
                  - '2026-07-21'
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    experienceIdPath_9:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    fromPath:
      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:
      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'
    latestQuery_10:
      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_11:
      name: private
      in: query
      schema:
        type: boolean
      description: Set to `true` to return only private (exclusive buy-out) sessions.
      required: false
  schemas:
    ItemsDateFromToDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            type: string
            example: '2026-07-14'
      required:
        - items
    LocalDate:
      type: string
      format: date
      example: '2026-08-15'
  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).

````