cURL
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" } ] } }
Get all active DNS records for a domain. Syncs with PowerDNS before returning results.
Registrar API Bearer token. Obtain from dashboard at /dashboard/seller/api-access after requesting Registrar API access.
Domain name (e.g., 'example.com')
Successful operation
true
Show child attributes