Huddle01 Cloud
Images

List images

List available OS images with CUDA drivers.

GET
/images
X-API-Key<token>

GPU API key (format: mk_...). Generate from the dashboard or via POST /api-keys.

In: header

Query Parameters

cluster_type?string

Filter images compatible with this cluster type (e.g. 1H100.80S.30V)

image_type?string

Image category filter (default cluster)

Default"cluster"

Response Body

application/json

application/json

curl -X GET "https://gpu.huddleapis.com/api/v1/images"
{
  "code": "OK",
  "data": {
    "data": [
      {
        "id": "daaaaaa8-8486-43d7-87bf-5e0ae1a8180d",
        "name": "Ubuntu 22.04 + CUDA 13.0 Open",
        "image": "ubuntu-22.04-cuda-13.0-cluster",
        "details": [
          "Ubuntu 22.04",
          "CUDA 13.0 Open"
        ]
      },
      {
        "id": "bbbbbbbf-334b-4a76-b7af-40a9d73363ce",
        "name": "Ubuntu 24.04 + CUDA 13.0 Open",
        "image": "ubuntu-24.04-cuda-13.0-cluster",
        "details": [
          "Ubuntu 24.04",
          "CUDA 13.0 Open"
        ]
      }
    ],
    "meta": {
      "total": 2
    }
  }
}
{
  "code": "BAD_REQUEST",
  "error": "Missing required field: hostname"
}