v1
latestOpenAPI 3.1.02026-07-2671111437.2 KBCreate Transfer
Initiates a domain transfer into your name.com account from another registrar. You must provide the domain name and its valid transfer authorization code (EPP code). The domain must not be locked or under any transfer restrictions (e.g. clientTransferProhibited). If successful, the transfer is submitted and tracked through the ICANN transfer process. Once a transfer has been created, you can track its progress via the GetTransfer endpoint. Transfer pricing: Omit purchasePrice for standard (non-premium) transfers. For premium transfers, pass transferPrice from Get Pricing For Domain as purchasePrice. If sent, it must match Get Pricing transferPrice exactly or the request will fail. Premium transfers without purchasePrice will fail. See the Domain pricing guide for how Get Pricing transferPrice relates to the years query parameter.
Request body
Example request
{
"authCode": "ABC123",
"domainName": "example.com",
"privacyEnabled": true,
"purchasePrice": 12.99
}Response
A successful response.
Example response
{
"order": 12345,
"totalPaid": 12.99,
"transfer": {
"domainName": "example.com",
"email": "admin@example.com",
"status": "pending_transfer"
},
"warnings": {
"message": "Domain has registry statuses that may prevent a successful transfer. Please ensure the domain is unlocked and eligible at the losing registrar.",
"statuses": [
"clientTransferProhibited",
"clientUpdateProhibited"
]
}
}