TLD detail unavailable
https://developer.hostup.se/errors/upstream_tld_product_shape_invalid {
"type": "https://developer.hostup.se/errors/upstream_tld_product_shape_invalid",
"title": "TLD detail unavailable",
"status": 502,
"detail": "Per-TLD pricing could not be loaded.",
"code": "upstream_tld_product_shape_invalid",
"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 === "upstream_tld_product_shape_invalid") {
// Handle: TLD detail unavailable
console.error(problem.detail);
}
}