DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
googleadservices.com
Records: 13
Response Time: 69ms
DNSSEC: Disabled
DNS Provider:
Google Cloud DNS
Security:
β SPF soft
β DMARC reject
Address Records
IP addresses the domain points to
| Type | Name | Value | TTL |
|---|---|---|---|
| A | googleadservices.com | 172.217.68.156 πΊπΈ US AS15169 GOOGLE - Google LLC, US | 5m |
| A | googleadservices.com | 172.217.68.154 πΊπΈ US AS15169 GOOGLE - Google LLC, US | 5m |
| A | googleadservices.com | 172.217.68.157 πΊπΈ US AS15169 GOOGLE - Google LLC, US | 5m |
| A | googleadservices.com | 172.217.68.155 πΊπΈ US AS15169 GOOGLE - Google LLC, US | 5m |
Mail Records
Mail servers for the domain
| Type | Name | Value | TTL |
|---|---|---|---|
| MX | googleadservices.com | 0 smtp.google.com. | 5m |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | googleadservices.com | ns4.google.com. | 4d |
| NS | googleadservices.com | ns3.google.com. | 4d |
| NS | googleadservices.com | ns2.google.com. | 4d |
| NS | googleadservices.com | ns1.google.com. | 4d |
| SOA | googleadservices.com | ns1.google.com. dns-admin.google.com. 912537324 900 900 1800 60 | 1m |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | _dmarc.googleadservices.com | "v=DMARC1; p=reject; rua=mailto:mailauth-reports@google.com" | 5m |
| TXT | googleadservices.com | "v=spf1 include:_spf.google.com ~all" | 1h |
Security & Certificates
DNSSEC, CA restrictions, and keys
| Type | Name | Value | TTL |
|---|---|---|---|
| CAA | googleadservices.com | \# 15 00 05 69 73 73 75 65 70 6b 69 2e 67 6f 6f 67 | 1d |
Queried at 5/10/2026, 9:31:13 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=googleadservices.com Response for googleadservices.com Live Data
{
"success": true,
"data": {
"domain": "googleadservices.com",
"queryTimeMs": 69,
"dnssec": false,
"dnsProvider": "Google Cloud DNS",
"records": [
{
"type": "A",
"name": "googleadservices.com",
"value": "172.217.68.156",
"ttl": 300,
"geo": {
"ip": "172.217.68.156",
"asn": 15169,
"country": "US",
"asnName": "GOOGLE - Google LLC, US"
}
},
{
"type": "A",
"name": "googleadservices.com",
"value": "172.217.68.154",
"ttl": 300,
"geo": {
"ip": "172.217.68.154",
"asn": 15169,
"country": "US",
"asnName": "GOOGLE - Google LLC, US"
}
},
{
"type": "A",
"name": "googleadservices.com",
"value": "172.217.68.157",
"ttl": 300,
"geo": {
"ip": "172.217.68.157",
"asn": 15169,
"country": "US",
"asnName": "GOOGLE - Google LLC, US"
}
},
{
"type": "A",
"name": "googleadservices.com",
"value": "172.217.68.155",
"ttl": 300,
"geo": {
"ip": "172.217.68.155",
"asn": 15169,
"country": "US",
"asnName": "GOOGLE - Google LLC, US"
}
},
{
"type": "MX",
"name": "googleadservices.com",
"value": "0 smtp.google.com.",
"ttl": 300
},
{
"type": "NS",
"name": "googleadservices.com",
"value": "ns4.google.com.",
"ttl": 345600
},
{
"type": "NS",
"name": "googleadservices.com",
"value": "ns3.google.com.",
"ttl": 345600
},
{
"type": "NS",
"name": "googleadservices.com",
"value": "ns2.google.com.",
"ttl": 345600
},
{
"type": "NS",
"name": "googleadservices.com",
"value": "ns1.google.com.",
"ttl": 345600
},
{
"type": "SOA",
"name": "googleadservices.com",
"value": "ns1.google.com. dns-admin.google.com. 912537324 900 900 1800 60",
"ttl": 60
},
{
"type": "TXT",
"name": "_dmarc.googleadservices.com",
"value": "\"v=DMARC1; p=reject; rua=mailto:mailauth-reports@google.com\"",
"ttl": 300
},
{
"type": "TXT",
"name": "googleadservices.com",
"value": "\"v=spf1 include:_spf.google.com ~all\"",
"ttl": 3600
},
{
"type": "CAA",
"name": "googleadservices.com",
"value": "\\# 15 00 05 69 73 73 75 65 70 6b 69 2e 67 6f 6f 67",
"ttl": 86400
}
],
"queriedAt": "2026-05-10T21:31:13.056Z"
}
}