Advanced Micro Devices Devices API

GPU device enumeration and information

Operations 2

GET /devices AMD ROCm List GPU Devices #
GET /devices/{deviceId} AMD ROCm Get GPU Device Details #

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/advanced-micro-devices-devices-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

advanced-micro-devices-devices-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AMD ROCm Management Devices API
  description: The AMD ROCm Management API provides runtime monitoring and configuration for AMD GPU hardware running the ROCm software stack. Supports querying GPU device information, monitoring utilization and health, managing ROCm system configuration, and retrieving performance counters for AMD Instinct and Radeon GPUs.
  version: '1'
  contact:
    name: AMD ROCm Support
    url: https://rocm.docs.amd.com
  termsOfService: https://www.amd.com/en/legal/terms-and-conditions.html
  license:
    name: AMD Terms and Conditions
    url: https://www.amd.com/en/legal/terms-and-conditions.html
servers:
- url: https://rocm-mgmt.amd.com/v1
  description: AMD ROCm Management API Production
security:
- bearerAuth: []
tags:
- name: Devices
  description: GPU device enumeration and information
paths:
  /devices:
    get:
      operationId: listDevices
      summary: AMD ROCm List GPU Devices
      description: Enumerate all AMD GPU devices visible to the ROCm runtime on the system.
      tags:
      - Devices
      responses:
        '200':
          description: List of GPU devices.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeviceList'
              examples:
                listDevices200Example:
                  summary: Default listDevices 200 response
                  x-microcks-default: true
                  value:
                    devices:
                    - id: gpu0
                      name: AMD Instinct MI300X
                      model: MI300X
                      vbios: 113-MSIV3C5.0N
                      driverVersion: 6.1.0
                      memoryTotal: 192
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                listDevices401Example:
                  summary: Default listDevices 401 response
                  x-microcks-default: true
                  value:
                    code: UNAUTHORIZED
                    message: Authentication required
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /devices/{deviceId}:
    get:
      operationId: getDevice
      summary: AMD ROCm Get GPU Device Details
      description: Retrieve detailed hardware information for a specific AMD GPU device including model, firmware, memory, and topology.
      tags:
      - Devices
      parameters:
      - name: deviceId
        in: path
        required: true
        description: GPU device identifier (e.g., gpu0, gpu1).
        schema:
          type: string
      responses:
        '200':
          description: GPU device details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Device'
              examples:
                getDevice200Example:
                  summary: Default getDevice 200 response
                  x-microcks-default: true
                  value:
                    id: gpu0
                    name: AMD Instinct MI300X
                    model: MI300X
                    vbios: 113-MSIV3C5.0N
                    driverVersion: 6.1.0
                    memoryTotal: 192
                    pcieBusId: '0000:03:00.0'
                    computeUnits: 304
        '404':
          description: Device not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              examples:
                getDevice404Example:
                  summary: Default getDevice 404 response
                  x-microcks-default: true
                  value:
                    code: NOT_FOUND
                    message: Device not found
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ErrorResponse:
      type: object
      description: API error response.
      properties:
        code:
          type: string
          description: Error code.
          example: NOT_FOUND
        message:
          type: string
          description: Error message.
          example: The requested resource was not found.
    Device:
      type: object
      description: An AMD GPU device.
      properties:
        id:
          type: string
          description: Device identifier.
          example: gpu0
        name:
          type: string
          description: Device display name.
          example: AMD Instinct MI300X
        model:
          type: string
          description: GPU model name.
          example: MI300X
        vbios:
          type: string
          description: VBIOS version string.
          example: 113-MSIV3C5.0N
        driverVersion:
          type: string
          description: ROCm driver version.
          example: 6.1.0
        memoryTotal:
          type: integer
          description: Total GPU memory in GB.
          example: 192
        pcieBusId:
          type: string
          description: PCIe bus ID.
          example: '0000:03:00.0'
        computeUnits:
          type: integer
          description: Number of compute units.
          example: 304
    DeviceList:
      type: object
      description: List of AMD GPU devices.
      properties:
        devices:
          type: array
          description: Array of GPU devices.
          items:
            $ref: '#/components/schemas/Device'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT