Get console access for a Virtual Server

Obtain access to the console of your Virtual Private Server (VPS). This is useful for troubleshooting or performing administrative tasks directly on the server, even with limited network connectivity. The API returns a console access URL for your browser and a unique 'requestId' for follow-up calls.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

Query Parameters

console string required
novnc string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
401
error string
message string
code string
timestamp string
requestId string
403
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/vm/{vmid}/console
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/vm/14754/console?console=string&novnc=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "consoleUrl": "string",
    "ticket": "string",
    "CSRFPreventionToken": "string",
    "username": "string"
  }
}