Internal server error
https://developer.hostup.se/errors/internal_error {
"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"
} 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);
}
}