DNS Lookup

DNS lookup

Need to know where a domain points, which mail servers it uses, or whether a TXT record was actually published? This DNS lookup queries authoritative records for any domain and returns A, AAAA, MX, TXT, NS, CNAME and SOA values in one pass, without the ceremony of dig or a terminal.

How to run a DNS lookup

  1. 1

    Enter a domain

    Type the bare domain (no https, no paths), e.g. `example.com`.

  2. 2

    Pick record types

    Tick A, AAAA, MX, TXT, NS, CNAME or SOA, or leave all selected for a full sweep.

  3. 3

    Run the query

    The tool hits a public DNS resolver (Cloudflare 1.1.1.1 over DoH) and streams each record type.

  4. 4

    Copy or export

    Copy the formatted output, or export to JSON for pipelines and Zapier webhooks.

Record types, what they are for

Type Purpose Common TTL
A IPv4 address the domain points to 300-3600
AAAA IPv6 address 300-3600
MX Mail exchanger hostnames with priority 3600
TXT Free-form text: SPF, DMARC, domain verification, DKIM 300-3600
NS Authoritative nameservers for the zone 86400
CNAME Canonical name alias (e.g., www -> root domain) 300-3600
SOA Start of authority: primary NS, email, zone serial 3600+

Reading an SOA record

The SOA record answers the question “who owns this zone and when did it last change?”. Its fields are:

An increasing serial number is the signal that a zone has been updated; secondaries poll the primary, compare serials, and transfer when they differ.

TXT records decoded

TXT is the catch-all type. Common uses:

Troubleshooting tips

Frequently Asked Questions

Cloudflare 1.1.1.1 over DNS-over-HTTPS by default, with Google 8.8.8.8 and Quad9 9.9.9.9 available as alternatives. All three return the same data for most domains; compare two resolvers if you suspect a local cache poisoning or propagation issue.

Your terminal uses your ISP’s resolver or router-configured DNS, which may have older cached answers. The tool bypasses that cache by querying a public resolver directly, often showing more recent values.

Yes via the reverse-DNS lookup tool; this page focuses on forward records. PTR lookups need an IP address, not a domain name.

The public resolvers may log queries per their own privacy policies, but the tool itself does not store the domain or tie the query to your account.

Related Tools