routed_ipv6_moved

HTTP 410

Routed IPv6 moved

Type URL

https://developer.hostup.se/errors/routed_ipv6_moved

Detail message

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.

Example response

{
  "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"
}

Endpoints that may return this error

Handling this error

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);
  }
}