POST
/
kvm
/
v2
/
get
/
all_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=2025-01-12T15:30:00Z
{
  "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.

kvm_id
string

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

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.

Response

200
application/json
All VPS details retrieved successfully.
status
string
data
object