> ## 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 price tiers for sessions

> Returns the price tiers for the experience's sessions. Pass `sessionTime` and `sessionDuration` to price a specific session.



## OpenAPI

````yaml get /v2/experiences/{experienceId}/sessions/price-tiers
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}/sessions/price-tiers:
    get:
      tags:
        - Availability
      summary: Get price tiers for sessions
      description: >-
        Returns the price tiers for the experience's sessions. Pass
        `sessionTime` and `sessionDuration` to price a specific session.
      operationId: SchedulingPublicController_getSessionsPriceTiers
      parameters:
        - $ref: '#/components/parameters/experienceIdPath_21'
        - $ref: '#/components/parameters/latestQuery_22'
      responses:
        '200':
          description: Price tiers for sessions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsSessionsPriceTiersDto'
              example:
                items:
                  - id: cc6e7ec2-f8af-0898-18c9-cc215fc27112
                    type: default
                    priceTiers:
                      - id: 6c59db13-2c63-43b9-b91b-6267544f5fdb
                        name: Participant
                        price: 100
                    startDateTime: null
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    experienceIdPath_21:
      name: experienceId
      in: path
      schema:
        type: string
      required: true
      description: Only results for this experience.
      example: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
    latestQuery_22:
      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
  schemas:
    ItemsSessionsPriceTiersDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            $ref: '#/components/schemas/SessionsPriceTiersDto'
      required:
        - items
    SessionsPriceTiersDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the pricing tier.
          example: pricing-123
        type:
          type: string
          description: The type of pricing tier.
          enum:
            - default
            - session
            - rule
          example: session
        priceTiers:
          description: List of price tiers.
          type: array
          items:
            $ref: '#/components/schemas/PriceTierDto'
        startDateTime:
          type: string
          description: Start date and time in ISO format.
          example: '2024-03-15T14:30:00Z'
        sessionDuration:
          type: number
          description: Duration of the session in minutes.
          example: 120
      required:
        - id
        - type
        - priceTiers
        - startDateTime
        - sessionDuration
    PriceTierDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the price tier.
          example: tier-123
        name:
          type: string
          description: The name of the price tier.
          example: VIP
        price:
          type: number
          description: Price associated with the tier.
          example: 100
        maxQuantity:
          type: number
          description: Maximum quantity allowed for this price tier.
          example: 5
          nullable: true
      required:
        - id
        - name
        - price
  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).

````