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

# Get Available Gpu Types

> Distinct GPU types the caller could dispatch a dedicated FFT run on.

Same principal collapse as the dispatch picker (team wins when
present, otherwise personal) so what the dropdown offers matches
what dispatch would land on. When `team_id` is set the caller must
be a team member, matching the create-run gate.



## OpenAPI

````yaml https://api.primeintellect.ai/openapi.json get /api/v1/training/available-gpu-types
openapi: 3.1.0
info:
  title: PI API
  version: 0.1.0
servers:
  - url: https://api.primeintellect.ai
security: []
paths:
  /api/v1/training/available-gpu-types:
    get:
      tags:
        - training
      summary: Get Available Gpu Types
      description: |-
        Distinct GPU types the caller could dispatch a dedicated FFT run on.

        Same principal collapse as the dispatch picker (team wins when
        present, otherwise personal) so what the dropdown offers matches
        what dispatch would land on. When `team_id` is set the caller must
        be a team member, matching the create-run gate.
      operationId: get_available_gpu_types_api_v1_training_available_gpu_types_get
      parameters:
        - name: team_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Optional team ID. When set, returns GPU types across the team's
              ClusterAllocations. When omitted, uses the caller's personal
              allocations.
            title: Team Id
          description: >-
            Optional team ID. When set, returns GPU types across the team's
            ClusterAllocations. When omitted, uses the caller's personal
            allocations.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailableGpuTypesResponse'
        '401':
          description: Authorization failed
        '422':
          description: Invalid request data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    AvailableGpuTypesResponse:
      properties:
        gpuTypes:
          items:
            type: string
          type: array
          title: Gputypes
          description: Sorted, distinct list of eligible cluster gpuType values.
      type: object
      title: AvailableGpuTypesResponse
      description: |-
        Distinct GPU types across the caller's eligible PrimeClusters.

        Powers the "select a GPU type" dropdown at dispatch time so the UI
        only offers types the caller could actually land on. Filtering
        matches the dispatch picker (cordon + heartbeat freshness + non-zero
        ClusterAllocation on the principal).
    ErrorResponse:
      properties:
        errors:
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type: array
          title: Errors
      type: object
      required:
        - errors
      title: ErrorResponse
    ErrorDetail:
      properties:
        param:
          type: string
          title: Param
        details:
          type: string
          title: Details
      type: object
      required:
        - param
        - details
      title: ErrorDetail
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````