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

# VM Status

> Get current status of Installation VM, synced from GCP



## OpenAPI

````yaml get /api/mig/setup/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/mig/setup/status:
    get:
      tags:
        - MIG
      summary: Get Installation VM status
      description: Get current status of Installation VM, synced from GCP
      operationId: getInstallationVMStatus
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstallationVMStatusResponse'
components:
  schemas:
    InstallationVMStatusResponse:
      properties:
        vm_name:
          type: string
          title: Vm Name
          description: VM instance name
        vm_ip:
          anyOf:
            - type: string
            - type: 'null'
          title: Vm Ip
          description: VM IP address
        status:
          type: string
          title: Status
          description: VM status (provisioning, running, suspended, etc)
        image_version:
          type: integer
          title: Image Version
          description: Image version number
        custom_image_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Custom Image Name
          description: Custom image name if finalized
        instance_template_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Instance Template Name
          description: Instance template name if finalized
        idle_minutes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Idle Minutes
          description: Minutes since last activity
        finalized_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Finalized At
          description: Finalization timestamp
        created_at:
          type: string
          title: Created At
          description: Creation timestamp
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
          description: Error message if in error state
      type: object
      required:
        - vm_name
        - status
        - image_version
        - created_at
      title: InstallationVMStatusResponse
      description: Installation VM status information

````