> ## Documentation Index
> Fetch the complete documentation index at: https://docs.traza.com.au/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Booking

> Retrieves a specific booking by ID



## OpenAPI

````yaml GET /bookings/get-booking
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /bookings/get-booking:
    get:
      summary: Get Booking
      description: Retrieves a specific booking by ID
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: string
          description: The ID of the booking to retrieve
      responses:
        '200':
          description: Booking retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Booking'
components:
  schemas:
    Booking:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        dateTimestamp:
          type: number
        startTime:
          type: number
        endTime:
          type: number
        totalFee:
          type: string
        depositFee:
          type: string
        location:
          type: string

````