> ## 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 terms and conditions

> Returns the brand's terms and conditions documents.



## OpenAPI

````yaml get /v1/brands/{brandId}/terms-and-conditions
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}/terms-and-conditions:
    get:
      tags:
        - Brand Configuration
      summary: Get terms and conditions
      description: Returns the brand's terms and conditions documents.
      operationId: BrandPublicController_getTermsAndConditions
      parameters:
        - $ref: '#/components/parameters/brandIdPath_57'
      responses:
        '200':
          description: Get terms and conditions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandTermsAndConditionsDocumentDto'
              example:
                items:
                  - title: Booking Terms & Conditions
                    mediaId: d418996e-02f7-4c46-81e2-86f324e7e6ca
                    media:
                      id: d418996e-02f7-4c46-81e2-86f324e7e6ca
                      mimeType: application/pdf
                      uri:
                        original: >-
                          https://images.letsway.com/staging/https://storage.googleapis.com/kouto-api-media/2026/6/f82e16469dd615d79fc734fdd77e5e359495ba39884fa12b.pdf
                  - title: Cancellation Policy
                    mediaId: 8fb5b28d-dbb2-4439-b258-dffc852d947b
                    media:
                      id: 8fb5b28d-dbb2-4439-b258-dffc852d947b
                      mimeType: application/pdf
                      uri:
                        original: >-
                          https://images.letsway.com/staging/https://storage.googleapis.com/kouto-api-media/2026/6/f82e16469dd615d79fc734fdd77e5e359495ba39884fa12b.pdf
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    brandIdPath_57:
      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:
    BrandTermsAndConditionsDocumentDto:
      type: object
      properties:
        title:
          type: string
          description: Title of the document.
        mediaId:
          type: string
          description: Media identifier for the document.
        media:
          description: Media reference object.
          nullable: true
          allOf:
            - $ref: '#/components/schemas/MediaReferenceDto'
      required:
        - title
        - mediaId
    MediaReferenceDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the media.
          example: uuid-value
        kind:
          type: string
          description: Kind of listing picture.
          enum:
            - gallery
            - cover
            - map
            - description
          example: cover
        uri:
          description: Object containing the media URIs.
          allOf:
            - $ref: '#/components/schemas/MediaUriDto'
      required:
        - id
        - uri
    MediaUriDto:
      type: object
      properties:
        original:
          type: string
          description: Original URI for the media.
          example: https://example.com/image.jpg
      required:
        - original
  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).

````