Documentation Index
Fetch the complete documentation index at: https://docs.name.com/llms.txt
Use this file to discover all available pages before exploring further.
External Transfers Support — In and Out
This guide covers external transfers: moving a domain from another registrar into name.com (transfer in), and preparing a domain to leave name.com for another registrar (transfer out). The gaining registrar always starts a transfer-out; name.com’s API helps you unlock domains, retrieve auth codes, monitor status, and cancel an outbound transfer when needed.Important timing notes
Domains must typically be registered for at least 60 days before they can be transferred to a different registrar (ICANN rule).A) Transfer into name.com (transfer in)
How it works via the API
1. Initiate a transfer
POST /core/v1/transfers
Required inputs:
domainNameauthCode— EPP / authorization code from the current registrar
2. Monitor transfer status
GET /core/v1/transfers— list transfers
List TransfersGET /core/v1/transfers/{domainName}— status for a specific domain
Get Transfer
3. Webhook monitoring
Subscribe todomain-transfer-status-change webhook events to track progress automatically.
See Domain Transfer Status Change and Subscribe to Notification.
B) Transfer out of name.com
How it works
1. Unlock the domain for transfer out
PATCH /core/v1/domains/{domainName}
Set the domain lock so the domain can leave name.com:
locked:false(JSON boolean)
2. Get the auth code for the customer
GET /core/v1/domains/{domainName}:getAuthCode
Retrieve the EPP / authorization code to give to the registrant or the gaining registrar.
See Get Auth Code for Domain.
3. Cancel a transfer-out request (optional)
If you need to cancel a transfer-out request:POST /core/v1/transfers/external/out/{domainName}:cancel
See Cancel External Transfer Out.
The name.com Core API does not initiate transfer-out requests; those are started by the gaining registrar after you provide the auth code and the domain is eligible.
Webhook monitoring
Subscribe todomain-transfer-out-status-change to be notified when a domain has fully transferred away.
See Domain Transfer Out Status Change.