> ## 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 vibes

> Returns the brand's vibes - curated tags used to group and filter listings.



## OpenAPI

````yaml get /v1/brands/{brandId}/vibes
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}/vibes:
    get:
      tags:
        - Brand Configuration
      summary: Get vibes
      description: >-
        Returns the brand's vibes - curated tags used to group and filter
        listings.
      operationId: VibePublicController_getVibes
      parameters:
        - $ref: '#/components/parameters/brandIdPath_60'
        - $ref: '#/components/parameters/languageQuery_61'
        - $ref: '#/components/parameters/searchQuery_62'
      responses:
        '200':
          description: Get vibes.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsVibesDto'
              example:
                items:
                  - brandId: f2ce0a06-7997-4626-9532-65ac70f3a19c
                    id: f047e2cb-1fb5-4374-8f3e-4bfcc6d7284e
                    name: Winter
                    order: 1
                    createdAt: '2025-07-24T18:30:46.916Z'
                    updatedAt: '2025-07-24T18:30:46.916Z'
                    deletedAt: null
                  - brandId: f2ce0a06-7997-4626-9532-65ac70f3a19c
                    id: da568b2b-24c4-4b4a-9ac5-7010986368d3
                    name: Summer
                    order: 2
                    createdAt: '2025-07-24T18:30:46.916Z'
                    updatedAt: '2025-07-24T18:30:46.916Z'
                    deletedAt: null
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    brandIdPath_60:
      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).
    languageQuery_61:
      name: language
      in: query
      schema:
        type: string
      description: Locale for translated content; defaults to the brand's language.
      required: false
    searchQuery_62:
      name: search
      in: query
      schema:
        type: string
      description: Free-text filter by name.
      example: spa
      required: false
  schemas:
    ItemsVibesDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            $ref: '#/components/schemas/VibeDto'
      required:
        - items
    VibeDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the vibe.
          example: vibe-123
        name:
          type: string
          description: The name of the vibe.
          example: Relaxing
        order:
          type: object
          description: The order of the vibe.
          example: 1
      required:
        - id
        - name
  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).

````