Get details of a single VPS (overview as in the control panel) including specifications, network, and status (details.tasks, details.vps_locked).
Request
Add parameter in header API-key
Example:API-key: ********************
or
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/vps/12345' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
{
"status": 200,
"status_description": "Request successful.",
"data": {
"id": 12345,
"name": "my-vps",
"end_date": "2026-03-13",
"status": "Active",
"status_id": 1,
"specifications": {
"network": {
"v4": {
"ip": [
"1.2.3.4"
]
},
"v6": {
"ip": [
"2001:db8::1"
]
}
},
"os": "Ubuntu 22.04",
"power_status": "Running",
"cpu": {
"total": 2
},
"memory": {
"total": 4
},
"diskspace": {
"total": 80
},
"bandwidth": 1000,
"used_bandwidth": 10.5
},
"task": null
}
}
Modified at 2026-04-09 12:33:38