Chamber Metrics API

Query GPU utilization, memory, temperature, and power metrics

Operations 2

GET /workloads/metrics Get ranked workload metrics #
GET /workloads/{workload_id}/metrics Get workload metrics #

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/chamber-metrics-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

chamber-metrics-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chamber Capacity Metrics API
  version: 1.0.0
  description: The Chamber REST API provides programmatic access to manage GPU capacity, monitor workloads, and query GPU metrics across your organization. Chamber is an AIOps control plane for enterprise AI infrastructure that helps ML teams monitor, diagnose, and resolve GPU workload issues across AWS, GCP, Azure, and on-premise clusters. All requests (except the health check) require a Bearer token and an organization context header.
  contact:
    name: Chamber Support
    email: support@usechamber.io
    url: https://docs.usechamber.io/api-reference/introduction
  x-provider: Chamber
  x-source: https://docs.usechamber.io/api-reference/introduction
servers:
- url: https://api.usechamber.io/v1
  description: Production
security:
- bearerAuth: []
tags:
- name: Metrics
  description: Query GPU utilization, memory, temperature, and power metrics
paths:
  /workloads/metrics:
    get:
      operationId: listRankedWorkloadMetrics
      summary: Get ranked workload metrics
      description: Retrieve metrics across workloads, ranked by utilization or consumption.
      tags:
      - Metrics
      parameters:
      - $ref: '#/components/parameters/OrganizationIdHeader'
      - name: sort_by
        in: query
        description: Sort metric
        schema:
          type: string
          enum:
          - gpu_utilization
          - memory_utilization
          - power_usage
          - gpu_hours
      - name: order
        in: query
        description: Sort order
        schema:
          type: string
          enum:
          - asc
          - desc
          default: desc
      - $ref: '#/components/parameters/LimitParam'
      - name: initiative_id
        in: query
        description: Filter to specific team
        schema:
          type: string
      - name: status
        in: query
        description: Filter by workload status
        schema:
          type: string
      responses:
        '200':
          description: Ranked workload metrics
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                  metadata:
                    $ref: '#/components/schemas/PageMetadata'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
  /workloads/{workload_id}/metrics:
    get:
      operationId: getWorkloadMetrics
      summary: Get workload metrics
      description: Retrieve GPU metrics for a specific workload.
      tags:
      - Metrics
      parameters:
      - $ref: '#/components/parameters/WorkloadIdPath'
      - $ref: '#/components/parameters/OrganizationIdHeader'
      - name: time_range
        in: query
        description: Time range for the metrics window
        schema:
          type: string
          enum:
          - last_1h
          - last_6h
          - last_24h
          - job_lifetime
          default: last_1h
      - name: metrics
        in: query
        description: Comma-separated list of metrics to include
        schema:
          type: string
      responses:
        '200':
          description: GPU metrics for the workload
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                  request_id:
                    type: string
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  responses:
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: The caller's role does not permit access to this resource
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            details:
              type: array
              items:
                type: object
        request_id:
          type: string
    PageMetadata:
      type: object
      properties:
        next_token:
          type: string
        total_count:
          type: integer
  parameters:
    LimitParam:
      name: limit
      in: query
      description: Number of results per page (1-100, default 20)
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 20
    WorkloadIdPath:
      name: workload_id
      in: path
      required: true
      description: The unique workload identifier
      schema:
        type: string
    OrganizationIdHeader:
      name: X-Organization-Id
      in: header
      required: true
      description: Your organization ID (not required for /health).
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token — a JWT from Cognito or a Chamber API token (prefix `ch.`). Generate API tokens in the dashboard under Settings > API Tokens.