VPS Details
This endpoint retrieves comprehensive details about the specified KVM VPS,
including configuration, resource usage, network settings, and metadata.
The api_host
parameter, obtained from the “Create AUTH-session” response,
is dynamically set in the URL.
Provide the signature
, kvm_id
, and valid_until
parameters obtained
from the same response to fetch the information.
Body
The session signature obtained from the "Create AUTH-session" call.
"session_signature_98765"
The unique identifier of the KVM VPS whose details are being retrieved.
This value is specific to your VPS.
"kvm_100200_300400"
The expiration timestamp for the session, obtained from the "Create AUTH-session" call.
Ensure that the session is valid and has not expired.
"2025-01-12T15:30:00Z"
Response
"success"
{
"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"
}
}
Was this page helpful?