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

# List Gpus

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json get /api/gpus
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/gpus:
    get:
      tags:
        - GPUs
      summary: List Gpus
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: list_gpus
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/GpuResponse'
                type: array
                title: Response List Gpus
          description: HTTP 200 response
components:
  schemas:
    GpuResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        memory_mb:
          type: integer
          title: Memory Mb
        compute_cap:
          anyOf:
            - type: string
            - type: 'null'
          title: Compute Cap
        vendor:
          $ref: '#/components/schemas/GpuVendor'
        schedulable:
          type: boolean
          title: Schedulable
        status:
          $ref: '#/components/schemas/GpuStatus'
        utilization_percent:
          anyOf:
            - type: integer
            - type: 'null'
          title: Utilization Percent
        memory_used_mb:
          anyOf:
            - type: integer
            - type: 'null'
          title: Memory Used Mb
        temperature_c:
          anyOf:
            - type: integer
            - type: 'null'
          title: Temperature C
      type: object
      required:
        - id
        - name
        - memory_mb
        - vendor
        - schedulable
        - status
      title: GpuResponse
    GpuVendor:
      type: string
      enum:
        - nvidia
        - amd
      title: GpuVendor
    GpuStatus:
      type: string
      enum:
        - idle
        - busy
        - shared
        - error
        - offline
      title: GpuStatus

````