DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
apple-dns.net
Records: 8
Response Time: 10ms
DNSSEC: Disabled
DNS Provider: Unknown
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | apple-dns.net | a.ns.apple.com. | 1d |
| NS | apple-dns.net | b.ns.apple.com. | 1d |
| NS | apple-dns.net | c.ns.apple.com. | 1d |
| NS | apple-dns.net | d.ns.apple.com. | 1d |
| SOA | apple-dns.net | ns-ext-prod.jackfruit.apple.com. dnscontact.apple.com. 160 7200 5400 3628800 300 | 1d |
Security & Certificates
DNSSEC, CA restrictions, and keys
| Type | Name | Value | TTL |
|---|---|---|---|
| CAA | apple-dns.net | \# 35 00 05 69 6f 64 65 66 6d 61 69 6c 74 6f 3a 63 6f 6e 74 61 63 74 5f 70 6b 69 40 61 70 70 6c 65 2e 63 6f 6d | 1h |
| CAA | apple-dns.net | \# 20 00 05 69 73 73 75 65 70 6b 69 2e 61 70 70 6c 65 2e 63 6f 6d | 1h |
| CAA | apple-dns.net | \# 24 00 09 69 73 73 75 65 77 69 6c 64 70 6b 69 2e 61 70 70 6c 65 2e 63 6f 6d | 1h |
Queried at 5/10/2026, 9:35:05 PM
About DNS Records
The Domain Name System (DNS) is the internet's phonebook, translating human-readable domain names into IP addresses. DNS records contain essential configuration for how a domain behaves across email, web, security, and services.
Common Records
- A/AAAA - Map domain to IPv4/IPv6 addresses
- MX - Mail servers for receiving email
- TXT - SPF, DKIM, DMARC for email security
- NS - Authoritative nameservers
- CNAME - Aliases pointing to other domains
Security Records
- CAA - Restrict which CAs can issue certificates
- DNSKEY/DS - DNSSEC cryptographic keys
- TLSA - DANE TLS certificate authentication
- SSHFP - SSH host key fingerprints
- SRV - Service discovery and endpoints
REST API
Integrate DNS lookups into your applications with our REST API. Query all record types programmatically.
GET DNS Lookup
$
curl https://api.requestguard.com/v1/dns/lookup?domain=apple-dns.net Response for apple-dns.net Live Data
{
"success": true,
"data": {
"domain": "apple-dns.net",
"queryTimeMs": 10,
"dnssec": false,
"dnsProvider": null,
"records": [
{
"type": "NS",
"name": "apple-dns.net",
"value": "a.ns.apple.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "apple-dns.net",
"value": "b.ns.apple.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "apple-dns.net",
"value": "c.ns.apple.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "apple-dns.net",
"value": "d.ns.apple.com.",
"ttl": 86400
},
{
"type": "SOA",
"name": "apple-dns.net",
"value": "ns-ext-prod.jackfruit.apple.com. dnscontact.apple.com. 160 7200 5400 3628800 300",
"ttl": 86400
},
{
"type": "CAA",
"name": "apple-dns.net",
"value": "\\# 35 00 05 69 6f 64 65 66 6d 61 69 6c 74 6f 3a 63 6f 6e 74 61 63 74 5f 70 6b 69 40 61 70 70 6c 65 2e 63 6f 6d",
"ttl": 3600
},
{
"type": "CAA",
"name": "apple-dns.net",
"value": "\\# 20 00 05 69 73 73 75 65 70 6b 69 2e 61 70 70 6c 65 2e 63 6f 6d",
"ttl": 3600
},
{
"type": "CAA",
"name": "apple-dns.net",
"value": "\\# 24 00 09 69 73 73 75 65 77 69 6c 64 70 6b 69 2e 61 70 70 6c 65 2e 63 6f 6d",
"ttl": 3600
}
],
"queriedAt": "2026-05-10T21:35:05.783Z"
}
}