Skip to main content
GET
/
clusters
/
types
/clusters/types
curl --request GET \
  --url https://api.shadeform.ai/v1/clusters/types \
  --header 'X-API-KEY: <api-key>'
{
  "cluster_types": [
    {
      "cloud": "denvr",
      "num_instances": 2,
      "availability": {
        "region": "houston-usa-1",
        "display_name": "US, Houston, TX",
        "available": true
      },
      "cluster_type": {
        "cloud": "denvr",
        "shade_instance_type": "H100_sxm5x8",
        "cloud_instance_type": "H100_80GB_SXM_8x",
        "configuration": {
          "memory_in_gb": 940,
          "storage_in_gb": 20000,
          "vcpus": 208,
          "num_gpus": 8,
          "gpu_type": "H100",
          "interconnect": "sxm5",
          "nvlink": true,
          "os_options": [
            "ubuntu22.04_cuda12.4_shade_os",
            "ubuntu20.04_cuda12.4_shade_os",
            "ubuntu20.04",
            "ubuntu22.04"
          ],
          "vram_per_gpu_in_gb": 80,
          "gpu_manufacturer": "nvidia"
        },
        "memory_in_gb": 940,
        "storage_in_gb": 20000,
        "vcpus": 208,
        "num_gpus": 8,
        "gpu_type": "H100",
        "interconnect": "sxm5",
        "nvlink": true,
        "hourly_price": 1400,
        "boot_time": {
          "min_boot_in_sec": 600,
          "max_boot_in_sec": 1200
        },
        "deployment_type": "vm"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.shadeform.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Response

200 - application/json

Returns a ClusterTypesResponse object

cluster_types
object[]
required
Example:
[
  {
    "cloud": "denvr",
    "num_instances": 2,
    "availability": {
      "region": "houston-usa-1",
      "display_name": "US, Houston, TX",
      "available": true
    },
    "cluster_type": {
      "cloud": "denvr",
      "shade_instance_type": "H100_sxm5x8",
      "cloud_instance_type": "H100_80GB_SXM_8x",
      "configuration": {
        "memory_in_gb": 940,
        "storage_in_gb": 20000,
        "vcpus": 208,
        "num_gpus": 8,
        "gpu_type": "H100",
        "interconnect": "sxm5",
        "nvlink": true,
        "os_options": [
          "ubuntu22.04_cuda12.4_shade_os",
          "ubuntu20.04_cuda12.4_shade_os",
          "ubuntu20.04",
          "ubuntu22.04"
        ],
        "vram_per_gpu_in_gb": 80,
        "gpu_manufacturer": "nvidia"
      },
      "memory_in_gb": 940,
      "storage_in_gb": 20000,
      "vcpus": 208,
      "num_gpus": 8,
      "gpu_type": "H100",
      "interconnect": "sxm5",
      "nvlink": true,
      "hourly_price": 1400,
      "boot_time": {
        "min_boot_in_sec": 600,
        "max_boot_in_sec": 1200
      },
      "deployment_type": "vm"
    }
  }
]