DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
getnada.com
Records: 7
Response Time: 58ms
DNSSEC: Disabled
DNS Provider:
Cloudflare
Security:
β SPF soft
Address Records
IP addresses the domain points to
| Type | Name | Value | TTL |
|---|---|---|---|
| A | getnada.com | 15.204.213.223 πΊπΈ US AS16276 OVH, FR | 5m |
Mail Records
Mail servers for the domain
| Type | Name | Value | TTL |
|---|---|---|---|
| MX | getnada.com | 10 mail.getnada.com. | 5m |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | getnada.com | rita.ns.cloudflare.com. | 1d |
| NS | getnada.com | theo.ns.cloudflare.com. | 1d |
| SOA | getnada.com | rita.ns.cloudflare.com. dns.cloudflare.com. 2400915883 10000 2400 604800 1800 | 30m |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | getnada.com | "google-site-verification=YaA3yXQHNI64uUTR-STro-5MoPp0IEKVEWzr6uSKs8s" | 5m |
| TXT | getnada.com | "v=spf1 a mx ~all" | 5m |
Queried at 5/10/2026, 9:31:56 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=getnada.com Response for getnada.com Live Data
{
"success": true,
"data": {
"domain": "getnada.com",
"queryTimeMs": 58,
"dnssec": false,
"dnsProvider": "Cloudflare",
"records": [
{
"type": "A",
"name": "getnada.com",
"value": "15.204.213.223",
"ttl": 300,
"geo": {
"ip": "15.204.213.223",
"asn": 16276,
"country": "US",
"asnName": "OVH, FR"
}
},
{
"type": "MX",
"name": "getnada.com",
"value": "10 mail.getnada.com.",
"ttl": 300
},
{
"type": "NS",
"name": "getnada.com",
"value": "rita.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "getnada.com",
"value": "theo.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "SOA",
"name": "getnada.com",
"value": "rita.ns.cloudflare.com. dns.cloudflare.com. 2400915883 10000 2400 604800 1800",
"ttl": 1800
},
{
"type": "TXT",
"name": "getnada.com",
"value": "\"google-site-verification=YaA3yXQHNI64uUTR-STro-5MoPp0IEKVEWzr6uSKs8s\"",
"ttl": 300
},
{
"type": "TXT",
"name": "getnada.com",
"value": "\"v=spf1 a mx ~all\"",
"ttl": 300
}
],
"queriedAt": "2026-05-10T21:31:56.609Z"
}
}