lookup_unavailable

HTTP 503

Lookup temporarily unavailable

Type URL

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

Detail message

WHOIS lookup is temporarily unavailable. Please try again in a moment.

Example response

{
  "type": "https://developer.hostup.se/errors/lookup_unavailable",
  "title": "Lookup temporarily unavailable",
  "status": 503,
  "detail": "WHOIS lookup is temporarily unavailable. Please try again in a moment.",
  "code": "lookup_unavailable",
  "instance": "/api/v2/...",
  "requestId": "req_abc123",
  "timestamp": "2026-04-27T12:00:00.000Z"
}

Handling this error

const response = await fetch(url, options);

if (!response.ok) {
  const problem = await response.json();

  if (problem.code === "lookup_unavailable") {
    // Handle: Lookup temporarily unavailable
    console.error(problem.detail);
  }
}