Skip to main content
POST
/
registrar
/
v1
/
domains
/
transfer
Transfer a domain in
curl --request POST \
  --url https://www.atom.com/api/registrar/v1/domains/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain_name": "example.com",
  "authcode": "Ab1!Cd2@Ef3#"
}
'
{
  "success": true,
  "message": "Domain transfer initiated successfully",
  "data": {
    "domain": "example.com",
    "status": "Transfer Initiated",
    "payment_method": "account_balance",
    "cart_id": 12345,
    "price_breakdown": {
      "unit_price": 9.99,
      "icann_fee": 0.18,
      "is_premium": false,
      "total": 10.17
    }
  }
}

Authorizations

Authorization
string
header
required

Registrar API Bearer token. Obtain from dashboard at /dashboard/seller/api-access after requesting Registrar API access.

Body

application/json
domain_name
string
required

The domain name to transfer in

Example:

"example.com"

authcode
string
required

Auth/EPP code from the current registrar. Required to authorize the transfer.

Example:

"Ab1!Cd2@Ef3#"

Response

Transfer initiated successfully

success
boolean
Example:

true

message
string
Example:

"Domain transfer initiated successfully"

data
object