List VM Details

Get a specific VM's details, like its current status, its IP, OS, hardware specs, and more.

You will need first to:

Request URL Format:

https://api.ssdnodes.com/servers/{vm_id}

Header Format:

Authorization: Bearer 123456789123456789123456789123456789

Request Parameters:

Parameter Values Allowed Default Value Description
vm_id* <VM ID>
N/A
ID of the VM

Success Response Format:

[ { "name": "ssdnodes-1234", "state": "running", "ip": "1.1.1.1", "operatingsystem": "centos-stream8", "mem": "32", "cpu": "8", "disk": "400", "vncstatus": "disabled", "dailysnapshots": "enabled" } ]

Error Response Format:

[ { "status": "error", "msg": "VM ID does not exist." } ]

CURL Example

                curl -X GET https://api.ssdnodes.com/servers/1234 -H "Authorization: Bearer 123456789123456789123456789123456789"
            

Copied!