> ## 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.

# Queue Status



## OpenAPI

````yaml get /api/driver-queue/status
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/driver-queue/status:
    get:
      tags:
        - driver-queue
      summary: Get Driver Queue Status
      operationId: get_driver_queue_status_api_driver_queue_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueueStatusResponse'
components:
  schemas:
    QueueStatusResponse:
      properties:
        pending_jobs:
          type: integer
          title: Pending Jobs
          description: Number of pending jobs
        assigned_jobs:
          type: integer
          title: Assigned Jobs
          description: Number of assigned jobs
        executing_jobs:
          type: integer
          title: Executing Jobs
          description: Number of executing jobs
        available_drivers:
          type: integer
          title: Available Drivers
          description: Number of available drivers
        total_drivers:
          type: integer
          title: Total Drivers
          description: Total number of drivers
          default: 0
        queue_depth:
          type: integer
          title: Queue Depth
          description: Number of pending jobs
        jobs:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Jobs
          description: Job counts by status (deprecated)
        vms:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Vms
          description: VM counts by status (deprecated)
      type: object
      required:
        - pending_jobs
        - assigned_jobs
        - executing_jobs
        - available_drivers
        - queue_depth
      title: QueueStatusResponse
      description: Job queue status information

````