Skip to main content
GET
/
registrar
/
v1
/
domains
/
{domain_name}
/
records
List DNS records
curl --request GET \
  --url https://atom.com/api/registrar/v1/domains/{domain_name}/records \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "domain_name": "example.com",
    "records": [
      {
        "id": 123,
        "type": "A",
        "name": "@",
        "content": "192.0.2.1",
        "ttl": 3600,
        "comment": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

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