Check routed IPv6 availability and status for a VPS.

This endpoint checks if a VPS has routed IPv6 functionality available. It returns information on availability, any reasons for unavailability, and network details like prefix length and rack ID. This information is useful for troubleshooting network configurations or planning network upgrades.

Path Parameters

vmid integer · min: 1 required Example

Unique vmid identifier

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
429
error string
message string
retryAfter string
requestId string
GET https://cloud.hostup.se/api/vm/{vmid}/routed-ipv6
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/vm/9675/routed-ipv6" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "available": true,
    "reason": "string",
    "rackId": "string",
    "prefixLength": 0,
    "cooldownDays": 0,
    "maxPerVm": 0,
    "allocation": "string"
  }
}