KVM
Get KVM status
Retrieve the current status, uptime, and resource usage for the KVM server.
get/api/kvm/{internal_id}/status
Path parameters
internal_idstring required
internal_id of the KVM server
Response
KVM status details
object required
Example response
{
"status": "success",
"message": "VM status retrieved successfully",
"data": {
"status": "running",
"uptime": 545,
"task": null,
"usage": {
"cpu": {
"data": "0.000",
"unit": "%"
},
"mem": {
"data": "0.659",
"unit": "MB"
},
"nvme_storage": {
"data": 1.7,
"unit": "GB"
}
}
}
}