Skip to main content
POST
/
kvm
/
v2
/
get
/
all_details
Get all VPS details
curl --request POST \
  --url https://{api_host}.edisglobal.com/kvm/v2/get/all_details \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data signature=session_signature_98765 \
  --data kvm_id=kvm_100200_300400 \
  --data valid_until=1737476000
{
  "status": "success",
  "data": {
    "hw": {
      "ram": "1024",
      "disk": "8192",
      "cpu_set_cores": "4",
      "drive_boost": "204800"
    },
    "suspended": "n",
    "ip": {
      "ipv4": [
        "192.168.1.10/255.255.255.0",
        "192.168.1.11/255.255.255.0"
      ],
      "ipv4_gw": "192.168.1.1",
      "ipv4_nm": "255.255.255.0",
      "ipv6_gw": "2001:db8::1",
      "ipv6_64": "2001:db8:abcd::/64"
    },
    "hostname": "my-vps-server",
    "traffic": {
      "data": {
        "included_bytes": 4294967296000,
        "days_remaining": 30,
        "last_updated": "1660023208",
        "rx_bytes": "987654321",
        "tx_bytes": "123456789",
        "rx_packets": "123456",
        "tx_packets": "654321"
      },
      "status": "success"
    }
  }
}

Body

application/x-www-form-urlencoded

Required parameters to fetch all details for a KVM VPS.

signature
string

The session signature obtained from the "Create AUTH-session" call.

Example:

"session_signature_98765"

kvm_id
string

The unique identifier of the KVM VPS whose details are being retrieved.
This value is specific to your VPS.

Example:

"kvm_100200_300400"

valid_until
string

The expiration timestamp for the session, obtained from the "Create AUTH-session" call.
Ensure that the session is valid and has not expired.

Example:

"1737476000"

Response

All VPS details retrieved successfully.

status
string
Example:

"success"

data
object
Example:
{
"hw": {
"ram": "1024",
"disk": "8192",
"cpu_set_cores": "4",
"drive_boost": "204800"
},
"suspended": "n",
"ip": {
"ipv4": [
"192.168.1.10/255.255.255.0",
"192.168.1.11/255.255.255.0"
],
"ipv4_gw": "192.168.1.1",
"ipv4_nm": "255.255.255.0",
"ipv6_gw": "2001:db8::1",
"ipv6_64": "2001:db8:abcd::/64"
},
"hostname": "my-vps-server",
"traffic": {
"data": {
"included_bytes": 4294967296000,
"days_remaining": 30,
"last_updated": "1660023208",
"rx_bytes": "987654321",
"tx_bytes": "123456789",
"rx_packets": "123456",
"tx_packets": "654321"
},
"status": "success"
}
}
I