Query any DNS record for any name, straight from your browser — a web version of dig. Lookups go over DNS-over-HTTPS to Google Public DNS or Cloudflare; results include TTLs, DNSSEC validation status, and a shareable URL.
Queries go directly from your browser to Google Public DNS or Cloudflare DNS via DNS-over-HTTPS. Nothing is logged by Winnr.
How it works
This page speaks DNS-over-HTTPS (DoH): your browser sends the query as a normal HTTPS request to a public resolver's JSON API (dns.google/resolve or cloudflare-dns.com/dns-query) and renders the answer. That's the same answer dig would give you against 8.8.8.8 or 1.1.1.1 — including TTLs and the DNSSEC AD (authenticated data) flag — with two practical bonuses: it works on any device without a terminal, and every result has a shareable URL.
URL formats supported: ?name=example.com&type=TXT query parameters, or the Google-dig-style hash #TXT/example.com. Both auto-run the lookup on page load.
The five lookups that matter for cold email
- MX on your domain — where inbound mail (and your replies) land. No MX, no replies.
- TXT at the root — your SPF record. Exactly one
v=spf1record, under 10 DNS lookups. - TXT at
selector._domainkey.yourdomain.com— your DKIM public key. - TXT at
_dmarc.yourdomain.com— your DMARC policy. - NS on your domain — who actually controls the zone. If these point somewhere unexpected, every other record is suspect.
Every domain provisioned through Winnr gets all five configured automatically — this tool is how you spot-check any domain, including ones you don't own.
FAQ
What does NXDOMAIN mean?
The name doesn't exist — no records of any type. Check for typos, or that the domain is registered and delegated.
Why do the two resolvers disagree right after I change a record?
Caching. Each resolver serves its cached copy until the record's TTL expires. Flipping between Google and Cloudflare here is a quick propagation check.
What's the AD badge?
AD (Authenticated Data) means the resolver validated the answer with DNSSEC. Most domains aren't DNSSEC-signed, so no badge is normal.
Can I look up an IP address?
Yes — select PTR and enter the IP. The tool converts it to the in-addr.arpa / ip6.arpa form automatically and returns the reverse DNS (rDNS) hostname, which matters for SMTP: sending IPs without matching forward-confirmed rDNS get penalized.