What the DNS Lookup does
A DNS lookup translates a human-readable domain name such as example.com into the numeric IP addresses that computers use to route traffic. Every time you open a website, your device performs this lookup first — this tool lets you do it manually so you can verify exactly where a domain points.
Our DNS lookup queries Google Public DNS (dns.google) using DNS-over-HTTPS, so the results reflect authoritative, up-to-date records rather than whatever is cached on your local machine. It returns both A records (IPv4) and AAAA records (IPv6) together with the TTL (time-to-live) for each.
How to read the results
- A — an IPv4 address the domain resolves to (e.g. 142.250.190.14). A domain can have several for load balancing.
- AAAA — an IPv6 address for the same domain. If none appear, the domain is not yet reachable over IPv6.
- TTL — how long (in seconds) resolvers may cache this record before checking again. Lower TTLs propagate changes faster.
Worked example
Input: google.com
A 142.250.190.14 TTL:300s AAAA 2607:f8b0:4009:815::200e TTL:300s
The 300-second TTL means resolvers refresh this record every 5 minutes — typical for large services that shift traffic between data centres frequently.
Common use cases
- Confirm a new domain or DNS change has propagated to the public internet.
- Check whether a website supports IPv6 by looking for AAAA records.
- Diagnose why a site loads for others but not for you (compare against your local resolver).
- Verify that a CDN or hosting migration is pointing to the right IP.
- Find the hosting IP of a domain before running a WHOIS or reverse-DNS check.