Skip to main content
GET
/
registrar
/
v1
/
domains
/
{domain_name}
/
nameservers
Get domain nameservers
curl --request GET \
  --url https://atom.com/api/registrar/v1/domains/{domain_name}/nameservers \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "domain_name": "example.com",
    "nameservers": [
      "ns1.atom.com",
      "ns2.atom.com"
    ],
    "type": "atom"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

domain_name
string
required

Domain name (e.g., 'example.com')

Response

Successful operation

success
boolean
Example:

true

data
object