v1

latestOpenAPI 3.0.02026-07-1771620.9 KB

Retrieve list of offered instance types

Returns a detailed list of the instance types offered by Lambda GPU Cloud. The details include the regions, if any, in which each instance type is currently available.

get/instance-types

Response

OK

dataobject required

Dict of instance_type_name to instance_type and region availability.

Example response

{
  "data": {
    "gpu_1x_a100": {
      "instance_type": {
        "name": "gpu_1x_a100",
        "description": "1x RTX A100 (24 GB)",
        "price_cents_per_hour": "80",
        "specs": {
          "vcpus": 24,
          "memory_gib": 800,
          "storage_gib": 512
        }
      },
      "regions_with_capacity_available": [
        {
          "name": "us-tx-1",
          "description": "Austin, Texas"
        }
      ]
    },
    "gpu_4x_a6000": {
      "instance_type": {
        "name": "gpu_4x_a6000",
        "description": "4x RTX 6000 (24 GB)",
        "price_cents_per_hour": "110",
        "specs": {
          "vcpus": 24,
          "memory_gib": 800,
          "storage_gib": 512
        }
      },
      "regions_with_capacity_available": [
        {
          "name": "us-az-1",
          "description": "Phoenix, Arizona"
        }
      ]
    }
  }
}
All 7 operations