> ## 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 Onboarding Progress

> Retrieves the user's onboarding progress



## OpenAPI

````yaml GET /onboarding/get-progress
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:
  /onboarding/get-progress:
    get:
      summary: Get Onboarding Progress
      description: Retrieves the user's onboarding progress
      responses:
        '200':
          description: Onboarding progress retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOnboardingProgressResponse'
components:
  schemas:
    GetOnboardingProgressResponse:
      type: object
      properties:
        progress:
          type: object
          description: Onboarding progress data

````