GET
/
enterprise
/
v1
/
io-cloud
/
vmaas
/
deployment
/
{deployment_id}
Get Deployment Details
curl --request GET \
  --url https://api.io.solutions/enterprise/v1/io-cloud/vmaas/deployment/{deployment_id} \
  --header 'x-api-key: <api-key>'
{
  "data": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "status": "running",
    "created_at": "2025-08-26T09:29:52.183Z",
    "started_at": "2025-08-26T09:29:52.183Z",
    "finished_at": "2025-08-26T09:29:52.183Z",
    "amount_paid": 0,
    "completed_percent": 0,
    "total_gpus": 0,
    "gpus_per_vm": 0,
    "total_vms": 0,
    "hardware_name": "NVIDIA RTX 3090",
    "hardware_id": 123,
    "locations": [
      {
        "id": 1,
        "iso2": "US",
        "name": "United States"
      }
    ],
    "brand_name": "NVIDIA",
    "compute_minutes_served": 120,
    "compute_minutes_remaining": 60,
    "ssh_keys": {
      "key1": "ssh-rsa AAAAB3...",
      "key2": "ssh-rsa BBBCC3..."
    },
    "github_ids": [
      "octocat",
      "developer123"
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

deployment_id
string
required

Unique identifier of the deployment

Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

Response

Successful response with deployment details

data
object