> ## 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 Unavailable Events

> Retrieves all unavailable events for the authenticated user



## OpenAPI

````yaml GET /unavailable-events/get-unavailable-events
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:
  /unavailable-events/get-unavailable-events:
    get:
      summary: Get Unavailable Events
      description: Retrieves all unavailable events for the authenticated user
      responses:
        '200':
          description: Unavailable events retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UnavailableEvent'
        '405':
          description: Method not allowed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    UnavailableEvent:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        date:
          type: number
        startTime:
          type: number
        endTime:
          type: number
        artistId:
          type: string
        createdAt:
          type: number
        updatedAt:
          type: number
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````