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

# Get Install Status

> Check the installation progress of a tool.



## OpenAPI

````yaml GET /api/v1/workspaces/{id}/tools/{tool}/install-status
openapi: 3.1.0
info:
  title: Rigbox Public API
  description: >-
    Gateway-owned public API for Rigbox. The gateway composes its local
    lifecycle API with service-owned exported specs.
  contact:
    name: Rigbox
    url: https://rigbox.dev
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.rigbox.dev
    description: Production gateway
security: []
tags:
  - name: Workspaces
  - name: CLI
  - name: Observability
  - name: Auth
  - name: API Keys
  - name: Access Control
  - name: Apps
  - name: App Catalog
  - name: Logs
  - name: AI
  - name: Tools
  - name: Snapshots
  - name: SSH Keys
  - name: Templates
  - name: Setup Scripts
  - name: Service Specs
  - name: Deploy
  - name: Community
  - name: User Settings
  - name: Roadmap
  - name: System
paths:
  /api/v1/workspaces/{id}/tools/{tool}/install-status:
    get:
      tags:
        - Tools
      summary: Poll the status of an async tool install job.
      description: Poll the install status of a tool in a workspace.
      operationId: get_tool_install_status
      parameters:
        - name: id
          in: path
          description: Workspace ID
          required: true
          schema:
            type: string
        - name: tool
          in: path
          description: Tool ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tool install status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolInstallStatusResponse'
      security:
        - bearer: []
components:
  schemas:
    ToolInstallStatusResponse:
      type: object
      required:
        - status
      properties:
        available:
          type:
            - boolean
            - 'null'
          description: Whether the tool is now available after install
        exit_code:
          type:
            - integer
            - 'null'
          format: int32
          description: Exit code (only when done)
        status:
          type: string
          description: '"running", "done", "failed"'
        stdout_tail:
          type:
            - string
            - 'null'
          description: Tail of stdout (only when done)
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````