Tested tool guide
Tested browser tools
Checked August 16, 2026
What TXT Record Lookup does, with a checked example
TXT is the catch-all DNS record type, and this tool fetches every TXT record published at a hostname you enter. SPF policies, DKIM public keys, DMARC policies, and domain-verification strings all live in TXT records - and at three different names. SPF sits at the bare domain (example.com), DMARC at _dmarc.example.com, and a DKIM key at selector._domainkey.example.com. The query is sent from your browser to a public DNS resolver over HTTPS, so the answer reflects live DNS state. The usual mistake is entering only the bare domain and expecting everything: you get SPF and verification strings, never DKIM or DMARC.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
v=spf1 include:_spf.google.com ~all
This is the record Google's own setup documentation tells Workspace customers to publish at spf.google.com, and the one google.com itself references. It contains no IP ranges: the include= delegates to _spf.google.com, whose records list Google's sending networks, and ~all soft-fails everything else.