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

# Get Progress

> Get current onboarding progress with checklist items automatically updated based on system state



## OpenAPI

````yaml get /api/onboarding/progress
openapi: 3.1.0
info:
  title: Axion Backend API
  description: Backend API for Axion platform with desktop automation capabilities
  version: 1.0.0
servers:
  - url: https://api.getgranite.ai
    description: Production server
  - url: http://localhost:8000
    description: Local development server
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Organizations
    description: Organization management and membership
  - name: Health
    description: API health and status monitoring
  - name: Automations
    description: Automation planning and execution
  - name: MIG
    description: Managed Instance Group operations
  - name: Agent
    description: Agent execution and streaming
  - name: Onboarding
    description: Organization onboarding flow
  - name: Organization Automations
    description: Organization automation endpoint management
  - name: Organization Endpoints
    description: Public endpoints for organization automations
  - name: Analytics
    description: Analytics and reporting endpoints
paths:
  /api/onboarding/progress:
    get:
      tags:
        - Onboarding
      summary: Get onboarding progress
      description: >-
        Get current onboarding progress with checklist items automatically
        updated based on system state
      operationId: getOnboardingProgress
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OnboardingProgressResponse'
components:
  schemas:
    OnboardingProgressResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/OnboardingProgressItem'
          type: array
          title: Items
          description: Onboarding checklist items
        all_completed:
          type: boolean
          title: All Completed
          description: Whether all items are completed
        dismissed:
          type: boolean
          title: Dismissed
          description: Whether checklist has been dismissed
      type: object
      required:
        - items
        - all_completed
        - dismissed
      title: OnboardingProgressResponse
      description: Onboarding progress with checklist items
    OnboardingProgressItem:
      properties:
        id:
          type: string
          title: Id
          description: Unique item identifier
        title:
          type: string
          title: Title
          description: Item title
        description:
          type: string
          title: Description
          description: Item description
        completed:
          type: boolean
          title: Completed
          description: Whether item is completed
      type: object
      required:
        - id
        - title
        - description
        - completed
      title: OnboardingProgressItem
      description: Individual onboarding checklist item

````