Get an overview of all your virtual servers (VPS), including IP address, status, resources, and bandwidth usage. This endpoint returns a unique ID needed for subsequent actions.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/vps-accounts curl -X GET "https://cloud.hostup.se/api/vps-accounts" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"vps_accounts": [
{
"id": "string",
"name": "string",
"ip": "string",
"status": "string",
"vmStatus": "string",
"bandwidth": {
"used": 0,
"limit": 0,
"inbound": 0,
"outbound": 0
},
"proxmoxVmId": "string",
"serverId": "string",
"product_id": "string",
"os": "string",
"resources": {
"cpu": 0,
"ram": 0,
"storage": 0
},
"price": 0,
"billingCycle": "string",
"currency": "string",
"tags": [
"string"
]
}
],
"pagination": {
"currentPage": 0,
"perPage": 0,
"totalPages": 0,
"totalRecords": 0
}
}
}