> ## Documentation Index
> Fetch the complete documentation index at: https://na-36-changelog-go-livepeer-2026-05-18.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Info

> API reference for the hardware-info endpoint. Returns GPU and system hardware details for a gateway node.



## OpenAPI

````yaml GET /hardware/info
openapi: 3.1.0
info:
  title: Livepeer AI Runner
  description: An application to run AI pipelines
  version: 0.0.0
servers:
  - url: https://dream-gateway.livepeer.cloud
    description: Livepeer Cloud Community Gateway
  - url: https://livepeer.studio/api/beta/generate
    description: Livepeer Studio Gateway
security: []
paths:
  /hardware/info:
    get:
      summary: Hardware Info
      operationId: hardware_info
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HardwareInformation'
components:
  schemas:
    HardwareInformation:
      properties:
        pipeline:
          type: string
          title: Pipeline
        model_id:
          type: string
          title: Model Id
        gpu_info:
          additionalProperties:
            $ref: '#/components/schemas/GPUComputeInfo'
          type: object
          title: Gpu Info
      type: object
      required:
        - pipeline
        - model_id
        - gpu_info
      title: HardwareInformation
      description: Response model for GPU information.
    GPUComputeInfo:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        memory_total:
          type: integer
          title: Memory Total
        memory_free:
          type: integer
          title: Memory Free
        major:
          type: integer
          title: Major
        minor:
          type: integer
          title: Minor
      type: object
      required:
        - id
        - name
        - memory_total
        - memory_free
        - major
        - minor
      title: GPUComputeInfo
      description: Model for detailed GPU compute information.

````