Routed IPv6 moved
https://developer.hostup.se/errors/routed_ipv6_moved {
"type": "https://developer.hostup.se/errors/routed_ipv6_moved",
"title": "Routed IPv6 moved",
"status": 410,
"detail": "Routed IPv6 is now managed at account level. Use /api/v2/routed-ipv6 to allocate /48 pools and route /48, /56, or /64 subnets to VPS services.",
"code": "routed_ipv6_moved",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "routed_ipv6_moved") {
// Handle: Routed IPv6 moved
console.error(problem.detail);
}
}