DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
sharklasers.com
Records: 7
Response Time: 74ms
DNSSEC: Disabled
DNS Provider:
Cloudflare
Security:
✓ SPF strict
✓ DMARC reject
Address Records
IP addresses the domain points to
| Type | Name | Value | TTL |
|---|---|---|---|
| A | sharklasers.com | 178.162.170.166 🇳🇱 NL AS60781 LEASEWEB-NL-AMS-01 Netherlands, NL | 5m |
Mail Records
Mail servers for the domain
| Type | Name | Value | TTL |
|---|---|---|---|
| MX | sharklasers.com | 0 mail.guerrillamail.com. | 5m |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | sharklasers.com | rick.ns.cloudflare.com. | 1d |
| NS | sharklasers.com | sara.ns.cloudflare.com. | 1d |
| SOA | sharklasers.com | rick.ns.cloudflare.com. dns.cloudflare.com. 2403684117 10000 2400 604800 1800 | 30m |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | _dmarc.sharklasers.com | "v=DMARC1; p=reject; sp=reject; rf=afrf; pct=100; ri=86400" | 5m |
| TXT | sharklasers.com | "v=spf1 mx a ip4:178.162.170.166 -all" | 5m |
Queried at 5/10/2026, 9:33:49 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=sharklasers.com Response for sharklasers.com Live Data
{
"success": true,
"data": {
"domain": "sharklasers.com",
"queryTimeMs": 74,
"dnssec": false,
"dnsProvider": "Cloudflare",
"records": [
{
"type": "A",
"name": "sharklasers.com",
"value": "178.162.170.166",
"ttl": 300,
"geo": {
"ip": "178.162.170.166",
"asn": 60781,
"country": "NL",
"asnName": "LEASEWEB-NL-AMS-01 Netherlands, NL"
}
},
{
"type": "MX",
"name": "sharklasers.com",
"value": "0 mail.guerrillamail.com.",
"ttl": 300
},
{
"type": "NS",
"name": "sharklasers.com",
"value": "rick.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "sharklasers.com",
"value": "sara.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "SOA",
"name": "sharklasers.com",
"value": "rick.ns.cloudflare.com. dns.cloudflare.com. 2403684117 10000 2400 604800 1800",
"ttl": 1800
},
{
"type": "TXT",
"name": "_dmarc.sharklasers.com",
"value": "\"v=DMARC1; p=reject; sp=reject; rf=afrf; pct=100; ri=86400\"",
"ttl": 300
},
{
"type": "TXT",
"name": "sharklasers.com",
"value": "\"v=spf1 mx a ip4:178.162.170.166 -all\"",
"ttl": 300
}
],
"queriedAt": "2026-05-10T21:33:49.627Z"
}
}