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

> Returns a single booking by ID, including purchaser, participants, amounts, and status.



## OpenAPI

````yaml get /v1/bookings/{bookingId}
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/bookings/{bookingId}:
    get:
      tags:
        - Bookings
      summary: Get booking
      description: >-
        Returns a single booking by ID, including purchaser, participants,
        amounts, and status.
      operationId: BookingPublicKeyedController_getBooking
      parameters:
        - $ref: '#/components/parameters/bookingIdPath'
      responses:
        '200':
          description: Booking details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BookingDetailDto'
              example:
                data:
                  id: 019f5ca1-4dc1-775d-a40d-833f44bfccf4
                  confirmationCode: U7dSqlzCA
                  cartId: 1ccd47b4-8784-43a0-86a5-fc733265f3c4
                  cartConfirmationCode: 55xNJqU3Q
                  amount: 100
                  currency: USD
                  amountRefunded: 0
                  amountVoided: 0
                  event:
                    timezone: America/Chicago
                    startDateTime: '2026-07-14T10:00:00'
                  experience:
                    id: c99f70ee-1c0e-4534-a31a-96d5d966cc4b
                    title: Sunset Sailing Tour
                  listing:
                    id: d9fa9229-9132-415d-bc04-513062ee3bcd
                  resourceGroupCollection: null
                  resourceGroup: null
                  status: confirmed
                  purchaser:
                    id: 019f5ca1-5432-751e-8663-7b999f0f7ede
                    firstName: Alice
                    lastName: Rivera
                    emailAddress: alice@example.com
                    phoneNumber: '+15550100'
                  participants:
                    - id: 019f5ca1-5432-751e-8663-7c22693a6e7e
                      firstName: Alice
                      lastName: Rivera
                      emailAddress: null
                      phoneNumber: null
                      priceTierName: Participant
                      cancelledAt: null
                  paymentMethod: cash
                  paymentDetail: {}
                  createdAt: '2026-07-13T17:58:23.757Z'
                  notes: null
                  internalNotes: null
                  addOns: []
      security:
        - Brand-API-Key: []
        - Organization-API-Key: []
components:
  parameters:
    bookingIdPath:
      name: bookingId
      in: path
      schema:
        type: string
      required: true
      description: The booking's ID.
      example: 019f5ca1-4dc1-775d-a40d-833f44bfccf4
  schemas:
    BookingDetailDto:
      type: object
      properties:
        id:
          type: string
          description: Booking ID.
          example: booking-123
        eventId:
          type: string
          description: Event ID.
          example: event-456
        amount:
          type: number
          description: Total booking amount.
          example: 250
        experiencePaidAmount:
          type: number
          description: Amount paid for experience.
          example: 200
        experienceRefundedAmount:
          type: number
          description: Amount refunded for experience.
          example: 50
        currency:
          type: string
          description: Currency of the transaction.
          example: USD
        amountRefunded:
          type: number
          description: Total amount refunded.
          example: 50
        date:
          type: string
          description: Booking date in ISO format.
          example: '2024-03-15'
        confirmationCode:
          type: string
          description: Confirmation code for the booking.
          example: CONFIRM12345
        status:
          type: string
          description: Booking status.
          enum:
            - confirmed
            - refunded
            - processing
            - failed
            - cancelled
          example: confirmed
        sessionDate:
          type: string
          description: Session date in ISO format.
          example: '2024-03-20'
        sessionDuration:
          type: number
          description: Session duration in minutes.
          example: 90
        isCancelled:
          type: boolean
          description: Indicates if the booking was cancelled.
          example: false
        isPartiallyCancelled:
          type: boolean
          description: Indicates if the booking was partially cancelled.
          example: false
        createdAt:
          type: string
          description: Date when the booking was created.
          example: '2024-03-10T12:00:00Z'
        experience:
          description: Details of the booked experience.
          allOf:
            - $ref: '#/components/schemas/ExperienceDto'
        customer:
          description: Details of the customer.
          allOf:
            - $ref: '#/components/schemas/CustomerDto'
        purchaser:
          description: Details of the purchaser.
          allOf:
            - $ref: '#/components/schemas/PurchaserDto'
      required:
        - id
        - eventId
        - amount
        - experiencePaidAmount
        - experienceRefundedAmount
        - currency
        - amountRefunded
        - date
        - confirmationCode
        - status
        - sessionDate
        - sessionDuration
        - isCancelled
        - isPartiallyCancelled
        - createdAt
        - experience
        - customer
        - purchaser
    ExperienceDto:
      type: object
      properties:
        id:
          type: string
          description: Experience ID.
          example: exp-123
        title:
          type: string
          description: Experience title.
          example: Luxury Yacht Tour
        hostName:
          type: string
          description: Host name.
          example: John Doe
        number:
          type: object
          description: Experience number.
          example: EXP001
          nullable: true
      required:
        - id
        - title
        - hostName
    CustomerDto:
      type: object
      properties:
        id:
          type: string
          description: Customer ID.
          example: customer-123
        name:
          type: string
          description: Customer name.
          example: Jane Doe
        emailAddress:
          type: string
          description: Customer email address.
          example: jane.doe@example.com
      required:
        - id
        - name
        - emailAddress
    PurchaserDto:
      type: object
      properties:
        id:
          type: string
          description: Purchaser ID.
          example: purchaser-456
        firstName:
          type: string
          description: Purchaser first name.
          example: Jane
        lastName:
          type: string
          description: Purchaser last name.
          example: Doe
        emailAddress:
          type: object
          description: Purchaser email address.
          example: jane.doe@example.com
          nullable: true
        phoneNumber:
          type: object
          description: Purchaser phone number.
          example: '+1234567890'
          nullable: true
      required:
        - id
        - firstName
        - lastName
  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).

````