> ## 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 the first available date

> Returns the earliest date with an available session for the experience, together with that date's sessions.



## OpenAPI

````yaml get /v2/experiences/{experienceId}/first-available-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}/first-available-date:
    get:
      tags:
        - Availability
      summary: Get the first available date
      description: >-
        Returns the earliest date with an available session for the experience,
        together with that date's sessions.
      operationId: SchedulingPublicController_getFirstAvailableDate
      parameters:
        - $ref: '#/components/parameters/experienceIdPath'
        - $ref: '#/components/parameters/latestQuery'
        - $ref: '#/components/parameters/privateQuery'
      responses:
        '200':
          description: First available date.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FirstAvailableDateDto'
              example:
                data:
                  scheduledDate: '2026-07-14'
                  sessions:
                    - supportedParticipantsCount: 10
                      startTime: '10:00:00'
                      duration: 60
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    experienceIdPath:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    latestQuery:
      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:
      name: private
      in: query
      schema:
        type: boolean
      description: Set to `true` to return only private (exclusive buy-out) sessions.
      required: false
  schemas:
    FirstAvailableDateDto:
      type: object
      properties:
        scheduledDate:
          type: string
          description: Scheduled date in ISO format.
          example: '2024-03-15'
        sessions:
          description: List of available sessions.
          type: array
          items:
            $ref: '#/components/schemas/FirstAvailableDateSessionDto'
      required:
        - scheduledDate
        - sessions
    FirstAvailableDateSessionDto:
      type: object
      properties:
        startTime:
          type: string
          description: Start time of the session in ISO format.
          example: '14:30:00'
        supportedParticipantsCount:
          type: number
          description: Number of participants supported in the session.
          example: 5
        duration:
          type: number
          description: Duration of the session in minutes.
          example: 90
      required:
        - startTime
        - supportedParticipantsCount
        - duration
  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).

````