DNS Lookup
Type any domain and get A, AAAA, MX, CNAME, TXT, and NS records back instantly. Runs entirely in the browser using Google's DNS-over-HTTPS API : no backend, no installs.
Live Demo
Enter a domain and select record types to query.
Try:
How it works
Decisions
Both support CORS. Google's dns.google/resolve returns clean JSON with a simple query parameter.
Cloudflare needs an Accept header which some browser configs handle differently.
DNS-over-HTTPS is a public API with CORS support. Running a backend proxy would add latency and a server dependency for zero benefit.
All selected record types fire simultaneously with Promise.all.
Six queries still complete in under 200ms for most domains.
Querying all 6 types every time adds noise. Toggling lets users focus on what they need : useful when debugging MX records specifically.