Livepeer Hardware API

The Hardware API from Livepeer — 2 operation(s) for hardware.

Operations 2

GET /hardware/info Hardware Info #
GET /hardware/stats Hardware Stats #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/livepeer-hardware-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

livepeer-hardware-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Livepeer AI Runner Hardware API
  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
tags:
- name: Hardware
paths:
  /hardware/info:
    get:
      summary: Hardware Info
      operationId: hardware_info
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HardwareInformation'
      tags:
      - Hardware
  /hardware/stats:
    get:
      summary: Hardware Stats
      operationId: hardware_stats
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HardwareStats'
      tags:
      - Hardware
components:
  schemas:
    HardwareStats:
      properties:
        pipeline:
          type: string
          title: Pipeline
        model_id:
          type: string
          title: Model Id
        gpu_stats:
          additionalProperties:
            $ref: '#/components/schemas/GPUUtilizationInfo'
          type: object
          title: Gpu Stats
      type: object
      required:
      - pipeline
      - model_id
      - gpu_stats
      title: HardwareStats
      description: Response model for real-time GPU statistics.
    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.
    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.
    GPUUtilizationInfo:
      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
        utilization_compute:
          type: integer
          title: Utilization Compute
        utilization_memory:
          type: integer
          title: Utilization Memory
      type: object
      required:
      - id
      - name
      - memory_total
      - memory_free
      - utilization_compute
      - utilization_memory
      title: GPUUtilizationInfo
      description: Model for GPU utilization statistics.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer