Skip to main content
GET
/
api
/
v1
/
organizations
/
{organizationID}
/
regions
/
{regionID}
/
images
List images
curl --request GET \
  --url https://api.example.com/api/v1/organizations/{organizationID}/regions/{regionID}/images \
  --header 'Authorization: Bearer <token>'
[
  {
    "metadata": {
      "id": "a64f9269-36e0-4312-b8d1-52d93d569b7b",
      "name": "ubu2204-v1.25.6-gpu-525.85.05-7ced4154",
      "creationTime": "2023-02-22T12:04:13Z"
    },
    "spec": {
      "sizeGiB": 10,
      "virtualization": "virtualized",
      "os": {
        "kernel": "linux",
        "family": "debian",
        "distro": "ubuntu",
        "variant": "server",
        "codename": "noble",
        "version": "24.04"
      },
      "softwareVersions": {
        "kubernetes": "v1.25.6"
      },
      "gpu": {
        "vendor": "NVIDIA",
        "driver": "525.85.05",
        "models": [
          "A100",
          "H100",
          "H200"
        ]
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Operation requires OAuth 2.0 bearer token authentication.

Path Parameters

organizationID
string
required

The organization ID. A Kubernetes name. Must be a valid DNS containing only lower case characters, numbers or hyphens, start and end with a character or number, and be at most 63 characters in length.

Required string length: 1 - 63
regionID
string
required

The region ID. A Kubernetes name. Must be a valid DNS containing only lower case characters, numbers or hyphens, start and end with a character or number, and be at most 63 characters in length.

Required string length: 1 - 63

Response

A list of images that are compatible with this platform.

metadata
any
required
spec
string
required

An image.