> ## 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 Artist's Upcoming Bookings

> Retrieves the upcoming bookings for an artist



## OpenAPI

````yaml GET /bookings/get-artist-upcoming-bookings
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-artist-upcoming-bookings:
    get:
      summary: Get Artist's Upcoming Bookings
      description: Retrieves the upcoming bookings for an artist
      responses:
        '200':
          description: Upcoming bookings retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetArtistBookingsResponse'
components:
  schemas:
    GetArtistBookingsResponse:
      type: object
      properties:
        bookings:
          type: array
          items:
            $ref: '#/components/schemas/Booking'
        totalCount:
          type: number
    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

````