Duplicate SSH key
https://developer.hostup.se/errors/duplicate_fingerprint {
"type": "https://developer.hostup.se/errors/duplicate_fingerprint",
"title": "Duplicate SSH key",
"status": 409,
"detail": "This SSH public key is already registered on the account.",
"code": "duplicate_fingerprint",
"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 === "duplicate_fingerprint") {
// Handle: Duplicate SSH key
console.error(problem.detail);
}
}