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

# Machine Types

> Get list of available machine types for selection



## OpenAPI

````yaml get /api/onboarding/machine-types
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/machine-types:
    get:
      tags:
        - Onboarding
      summary: List available machine types
      description: Get list of available machine types for selection
      operationId: listMachineTypes
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MachineTypesListResponse'
components:
  schemas:
    MachineTypesListResponse:
      properties:
        machine_types:
          items:
            $ref: '#/components/schemas/MachineTypeResponse'
          type: array
          title: Machine Types
          description: List of available machine types
      type: object
      required:
        - machine_types
      title: MachineTypesListResponse
      description: Response containing list of available machine types
    MachineTypeResponse:
      properties:
        machine_type_id:
          type: integer
          title: Machine Type Id
          description: Unique machine type identifier
        machine_size:
          type: string
          title: Machine Size
          description: Machine size (small, medium, heavy)
        gcp_equivalent:
          type: string
          title: Gcp Equivalent
          description: GCP machine type equivalent
      type: object
      required:
        - machine_type_id
        - machine_size
        - gcp_equivalent
      title: MachineTypeResponse
      description: Machine type information

````