> ## 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 experience settings

> Returns an experience's booking settings.



## OpenAPI

````yaml get /v1/brands/{brandId}/experiences/{experienceId}/settings
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:
  /v1/brands/{brandId}/experiences/{experienceId}/settings:
    get:
      tags:
        - Experiences
      summary: Get experience settings
      description: Returns an experience's booking settings.
      operationId: ExperienceSettingsPublicController_findOne
      parameters:
        - $ref: '#/components/parameters/brandIdPath_49'
        - $ref: '#/components/parameters/experienceIdPath_50'
      responses:
        '200':
          description: Success.
          content:
            application/json:
              example:
                data:
                  bookingForm:
                    - scope: purchaser
                      fields:
                        emailAddress: alice@example.com
                        phoneNumber: '+15550100'
        '201':
          description: Get experience settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExperienceSettingsDto'
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    brandIdPath_49:
      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).
    experienceIdPath_50:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
  schemas:
    ExperienceSettingsDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the experience settings.
          example: exp-settings-123
        bookingForm:
          description: The booking form configuration.
          type: array
          items:
            $ref: '#/components/schemas/BookingFormDto'
        isCurated:
          type: boolean
          description: Indicates if the experience is curated.
          example: true
      required:
        - id
    BookingFormDto:
      type: object
      properties:
        scope:
          type: string
          description: Scope of the custom question.
          example: guest
        fields:
          description: Fields included in the booking form.
          allOf:
            - $ref: '#/components/schemas/BookingFormFieldDto'
      required:
        - scope
        - fields
    BookingFormFieldDto:
      type: object
      properties:
        emailAddress:
          description: Indicates if the email address field is required or active.
          allOf:
            - $ref: '#/components/schemas/PropertiesDto'
        phoneNumber:
          description: Indicates if the phone number field is required or active.
          allOf:
            - $ref: '#/components/schemas/PropertiesDto'
      required:
        - emailAddress
        - phoneNumber
    PropertiesDto:
      type: object
      properties:
        isRequired:
          type: boolean
          description: Indicates if the email address field is required.
          example: true
        isActive:
          type: boolean
          description: Indicates if the email address field is active.
          example: true
      required:
        - isRequired
        - isActive
  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).

````