CIDR overlaps an existing allocation
https://developer.hostup.se/errors/cidr_overlap {
"type": "https://developer.hostup.se/errors/cidr_overlap",
"title": "CIDR overlaps an existing allocation",
"status": 409,
"detail": "The requested CIDR is already in use. Omit ",
"code": "cidr_overlap",
"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 === "cidr_overlap") {
// Handle: CIDR overlaps an existing allocation
console.error(problem.detail);
}
}