> ## 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 session for a brand

> Returns the earliest available session across all of the brand's experiences.



## OpenAPI

````yaml get /v2/brands/{brandId}/first-available-session
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/brands/{brandId}/first-available-session:
    get:
      tags:
        - Availability
      summary: Get the first available session for a brand
      description: >-
        Returns the earliest available session across all of the brand's
        experiences.
      operationId: SchedulingPublicController_getBrandFirstAvailableDates
      parameters:
        - $ref: '#/components/parameters/brandIdPath_25'
      responses:
        '200':
          description: First available dates for a brand.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FirstAvailableDatesOfExperiencesDto'
              example:
                data:
                  sessions:
                    - experienceId: e7cea219-89a7-405c-b0f6-a5e23d43220b
                      hasPassed: false
                      startDateTime: 2026-07-15T09:00-05:00[America/Chicago]
                    - experienceId: e7cea219-89a7-405c-b0f6-a5e23d43220b
                      hasPassed: false
                      startDateTime: 2026-07-16T09:00-05:00[America/Chicago]
                  scheduledDate: '2026-07-01'
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    brandIdPath_25:
      name: brandId
      in: path
      schema:
        type: string
      required: true
      description: >-
        The brand's ID - must match the brand your API key identifies (or the
        Way-Brand-Id header when one is sent).
  schemas:
    FirstAvailableDatesOfExperiencesDto:
      type: object
      properties:
        scheduledDate:
          type: string
          description: Scheduled date in ISO format (YYYY-MM-DD)
          example: '2024-03-15'
        sessions:
          description: List of available sessions.
          type: array
          items:
            $ref: '#/components/schemas/AvailableSessionDto'
      required:
        - scheduledDate
        - sessions
    AvailableSessionDto:
      type: object
      properties:
        startDateTime:
          type: string
          description: Start date and time of the session in ISO format.
          example: '2024-03-15T14:30:00Z'
        experienceId:
          type: string
          description: The unique identifier of the associated experience.
          example: exp-123
        hasPassed:
          type: boolean
          description: Indicates if the session has already passed.
          example: false
      required:
        - startDateTime
        - experienceId
        - hasPassed
  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).

````