// IT TOOLS & CALCULATORS
|100+ TOOLS
πŸ” DNS LOOKUP
// Query DNS records from 10 global resolvers simultaneously β€” see propagation status worldwide
A AAAA MX CNAME TXT NS SOA CAA

DNS Lookup β€” Global Propagation Check

Queries 10 major public DNS resolvers around the world at once, so you can see whether a DNS change has actually propagated globally or is still cached on some resolvers β€” the exact question you're asking right after you change nameservers, update an A record, or fix an MX record and want to know if it's actually live yet.

A note on how this actually queries each resolver

Every resolver here is queried using standard DNS-over-HTTPS wire format (RFC 8484) rather than each provider's own proprietary JSON API. That distinction matters more than it sounds: a lot of tools like this one rely on a "JSON DoH" convenience format that only a handful of providers ever implemented, and it's not something you can rely on β€” Quad9 retired their JSON endpoint in 2025, and several other big-name resolvers never supported it in the first place. RFC 8484 wire format is the actual DNS-over-HTTPS standard, and it's what every resolver below genuinely supports, which is why this tool parses raw DNS response bytes directly in the browser instead of trusting each provider to expose the same convenience API.

Why one lookup from your machine doesn't answer that question

DNS records get cached by resolvers for the duration of their TTL. Change a record and different resolvers around the world will pick up the new value at different times, based on when they last cached it. Querying from just your own machine only tells you what your resolver currently has cached β€” it says nothing about whether a user on a different ISP, in a different country, is still getting the old answer. Querying multiple resolvers at once actually answers the propagation question instead of guessing at it.

The record types you'll be checking most often

  • A β€” IPv4 address, far and away the most common lookup
  • AAAA β€” IPv6 address
  • MX β€” which mail servers handle the domain's email, and in what priority order
  • CNAME β€” an alias pointing one name at another
  • TXT β€” free-text records, doing heavy lifting for SPF, DKIM, DMARC and domain verification
  • NS β€” the authoritative nameservers for the domain
  • SOA β€” zone metadata, including the serial number that tells secondary servers whether the zone has changed
  • CAA β€” which certificate authorities are allowed to issue certs for the domain

If you know a change is going out, dropping the TTL to something short (like 300 seconds) 24 hours ahead of time shrinks this whole propagation window β€” worth doing as routine practice before any planned DNS cutover, not something to remember only after the fact.