Get EPP code for domain transfer

Retrieve the EPP code (authorization or transfer code) required to move your domain to another registrar. You need to provide the domain ID obtained from a previous API request, such as when viewing domain details.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
400
error string
message string
code string
timestamp string
requestId string
401
error string
message string
code string
timestamp string
requestId string
415
error string
message string
code string
timestamp string
requestId string
429
error string
message string
retryAfter string
requestId string
POST https://cloud.hostup.se/api/domain-epp/{id}
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-epp/11784" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "success": true,
    "epp_code": "string"
  }
}