No nameservers found
https://developer.hostup.se/errors/not_found {
"type": "https://developer.hostup.se/errors/not_found",
"title": "No nameservers found",
"status": 404,
"detail": "No nameservers found for domain ${sanitizedDomain}.",
"code": "not_found",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} /api/v2/billing/payment-methods/contacts List invoice CC recipients POST /api/v2/billing/payment-methods/contacts Add invoice CC recipient DELETE /api/v2/billing/payment-methods/contacts Remove invoice CC recipient GET /api/v2/domains/availability Check domain availability POST /api/v2/domains/availability Check bulk domain availability POST /api/v2/domains/nameservers/lookup Look up current nameservers GET /api/v2/me/preferences Get account preferences PATCH /api/v2/me/preferences Update account preferences const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "not_found") {
// Handle: No nameservers found
console.error(problem.detail);
}
}