internal_error

HTTP 500

Internal server error

Type URL

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

Possible detail messages

An unexpected error occurred.
An unexpected error occurred while creating the proxy rule.
An unexpected error occurred while loading proxy rules.

Example response

{
  "type": "https://developer.hostup.se/errors/internal_error",
  "title": "Internal server error",
  "status": 500,
  "detail": "An unexpected error occurred.",
  "code": "internal_error",
  "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 === "internal_error") {
    // Handle: Internal server error
    console.error(problem.detail);
  }
}