> ## 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 Latest Requests

> Retrieves the latest booking requests for an artist

<Note>We get the user id from the session on the server side.</Note>


## OpenAPI

````yaml GET /bookings/get-artist-latest-requests
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-latest-requests:
    get:
      summary: Get artist's latest booking requests
      description: Retrieves the latest booking requests for an artist
      responses:
        '200':
          description: Latest booking requests retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetArtistLatestBookingRequestsResponse'
components:
  schemas:
    GetArtistLatestBookingRequestsResponse:
      type: object
      required:
        - bookings
        - totalCount
      properties:
        bookings:
          type: array
          items:
            type: object
            description: Booking with customer information
        totalCount:
          type: number

````