DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
playstation.net
Records: 13
Response Time: 48ms
DNSSEC: Disabled
DNS Provider: Unknown
Mail Records
Mail servers for the domain
| Type | Name | Value | TTL |
|---|---|---|---|
| MX | playstation.net | 10 inbound-smtp.us-west-2.amazonaws.com. | 1h |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | playstation.net | ns43.playstation.net. | 10m |
| NS | playstation.net | ns44.playstation.net. | 10m |
| NS | playstation.net | ns42.playstation.net. | 10m |
| NS | playstation.net | ns32.playstation.net. | 10m |
| NS | playstation.net | ns34.playstation.net. | 10m |
| NS | playstation.net | ns31.playstation.net. | 10m |
| NS | playstation.net | ns33.playstation.net. | 10m |
| NS | playstation.net | ns36.playstation.net. | 10m |
| NS | playstation.net | ns41.playstation.net. | 10m |
| NS | playstation.net | ns35.playstation.net. | 10m |
| SOA | playstation.net | ns00.playstation.net. root.ns00.playstation.net. 2026042401 3600 1800 604800 300 | 1h |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | playstation.net | "_w03rju1as892qdoa30tx9ad5nudo2fe" | 1h |
Queried at 5/10/2026, 9:34:33 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=playstation.net Response for playstation.net Live Data
{
"success": true,
"data": {
"domain": "playstation.net",
"queryTimeMs": 48,
"dnssec": false,
"dnsProvider": null,
"records": [
{
"type": "MX",
"name": "playstation.net",
"value": "10 inbound-smtp.us-west-2.amazonaws.com.",
"ttl": 3600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns43.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns44.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns42.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns32.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns34.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns31.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns33.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns36.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns41.playstation.net.",
"ttl": 600
},
{
"type": "NS",
"name": "playstation.net",
"value": "ns35.playstation.net.",
"ttl": 600
},
{
"type": "SOA",
"name": "playstation.net",
"value": "ns00.playstation.net. root.ns00.playstation.net. 2026042401 3600 1800 604800 300",
"ttl": 3600
},
{
"type": "TXT",
"name": "playstation.net",
"value": "\"_w03rju1as892qdoa30tx9ad5nudo2fe\"",
"ttl": 3600
}
],
"queriedAt": "2026-05-10T21:34:33.662Z"
}
}