DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
amazon-adsystem.com
Records: 10
Response Time: 41ms
DNSSEC: Disabled
DNS Provider:
AWS Route 53
Security:
β SPF strict
β DMARC reject
Address Records
IP addresses the domain points to
| Type | Name | Value | TTL |
|---|---|---|---|
| A | amazon-adsystem.com | 52.205.243.115 πΊπΈ US AS14618 AMAZON-AES - Amazon.com, Inc., US | 15m |
| A | amazon-adsystem.com | 52.200.46.40 πΊπΈ US AS14618 AMAZON-AES - Amazon.com, Inc., US | 15m |
| A | amazon-adsystem.com | 54.145.59.57 πΊπΈ US AS14618 AMAZON-AES - Amazon.com, Inc., US | 15m |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | amazon-adsystem.com | ns-1532.awsdns-63.org. | 2h |
| NS | amazon-adsystem.com | ns-2034.awsdns-62.co.uk. | 2h |
| NS | amazon-adsystem.com | ns-249.awsdns-31.com. | 2h |
| NS | amazon-adsystem.com | ns-806.awsdns-36.net. | 2h |
| SOA | amazon-adsystem.com | dns-external-route53.us-east-1.amazonaws.com. root.amazon.com. 201 3600 900 604800 60 | 2h |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | _dmarc.amazon-adsystem.com | "v=DMARC1; p=reject; rua=mailto:report@dmarc.amazon.com; ruf=mailto:report@dmarc.amazon.com" | 15m |
| TXT | amazon-adsystem.com | "v=spf1 -all" | 15m |
Queried at 5/10/2026, 9:31:40 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=amazon-adsystem.com Response for amazon-adsystem.com Live Data
{
"success": true,
"data": {
"domain": "amazon-adsystem.com",
"queryTimeMs": 41,
"dnssec": false,
"dnsProvider": "AWS Route 53",
"records": [
{
"type": "A",
"name": "amazon-adsystem.com",
"value": "52.205.243.115",
"ttl": 900,
"geo": {
"ip": "52.205.243.115",
"asn": 14618,
"country": "US",
"asnName": "AMAZON-AES - Amazon.com, Inc., US"
}
},
{
"type": "A",
"name": "amazon-adsystem.com",
"value": "52.200.46.40",
"ttl": 900,
"geo": {
"ip": "52.200.46.40",
"asn": 14618,
"country": "US",
"asnName": "AMAZON-AES - Amazon.com, Inc., US"
}
},
{
"type": "A",
"name": "amazon-adsystem.com",
"value": "54.145.59.57",
"ttl": 900,
"geo": {
"ip": "54.145.59.57",
"asn": 14618,
"country": "US",
"asnName": "AMAZON-AES - Amazon.com, Inc., US"
}
},
{
"type": "NS",
"name": "amazon-adsystem.com",
"value": "ns-1532.awsdns-63.org.",
"ttl": 7200
},
{
"type": "NS",
"name": "amazon-adsystem.com",
"value": "ns-2034.awsdns-62.co.uk.",
"ttl": 7200
},
{
"type": "NS",
"name": "amazon-adsystem.com",
"value": "ns-249.awsdns-31.com.",
"ttl": 7200
},
{
"type": "NS",
"name": "amazon-adsystem.com",
"value": "ns-806.awsdns-36.net.",
"ttl": 7200
},
{
"type": "SOA",
"name": "amazon-adsystem.com",
"value": "dns-external-route53.us-east-1.amazonaws.com. root.amazon.com. 201 3600 900 604800 60",
"ttl": 7200
},
{
"type": "TXT",
"name": "_dmarc.amazon-adsystem.com",
"value": "\"v=DMARC1; p=reject; rua=mailto:report@dmarc.amazon.com; ruf=mailto:report@dmarc.amazon.com\"",
"ttl": 900
},
{
"type": "TXT",
"name": "amazon-adsystem.com",
"value": "\"v=spf1 -all\"",
"ttl": 900
}
],
"queriedAt": "2026-05-10T21:31:40.913Z"
}
}