DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
cdninstagram.com
Records: 7
Response Time: 54ms
DNSSEC: Disabled
DNS Provider: Unknown
Security:
✓ SPF soft
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | cdninstagram.com | a.ns.instagram.com. | 2d |
| NS | cdninstagram.com | c.ns.instagram.com. | 2d |
| NS | cdninstagram.com | d.ns.instagram.com. | 2d |
| NS | cdninstagram.com | b.ns.instagram.com. | 2d |
| SOA | cdninstagram.com | a.ns.instagram.com. dns.facebook.com. 4207849484 14400 1800 604800 3600 | 1h |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | cdninstagram.com | "v=spf1 a ~all" | 2h |
| TXT | cdninstagram.com | "google-site-verification=SfM6L1bm4x67mLGAtiKDyhW-3VDpOGNaPYSV9jqBP_M" | 2h |
Queried at 5/10/2026, 9:33:43 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=cdninstagram.com Response for cdninstagram.com Live Data
{
"success": true,
"data": {
"domain": "cdninstagram.com",
"queryTimeMs": 54,
"dnssec": false,
"dnsProvider": null,
"records": [
{
"type": "NS",
"name": "cdninstagram.com",
"value": "a.ns.instagram.com.",
"ttl": 172800
},
{
"type": "NS",
"name": "cdninstagram.com",
"value": "c.ns.instagram.com.",
"ttl": 172800
},
{
"type": "NS",
"name": "cdninstagram.com",
"value": "d.ns.instagram.com.",
"ttl": 172800
},
{
"type": "NS",
"name": "cdninstagram.com",
"value": "b.ns.instagram.com.",
"ttl": 172800
},
{
"type": "SOA",
"name": "cdninstagram.com",
"value": "a.ns.instagram.com. dns.facebook.com. 4207849484 14400 1800 604800 3600",
"ttl": 3600
},
{
"type": "TXT",
"name": "cdninstagram.com",
"value": "\"v=spf1 a ~all\"",
"ttl": 7200
},
{
"type": "TXT",
"name": "cdninstagram.com",
"value": "\"google-site-verification=SfM6L1bm4x67mLGAtiKDyhW-3VDpOGNaPYSV9jqBP_M\"",
"ttl": 7200
}
],
"queriedAt": "2026-05-10T21:33:43.692Z"
}
}