DNS Lookup / Propagation

Check DNS records directly via multiple global resolvers (Google and Cloudflare) to verify propagation.

Resolver Result (Answer)
G
Google DNS
8.8.8.8
Waiting...
C
Cloudflare
1.1.1.1
Waiting...

Note: Uses DNS-over-HTTPS (DoH) to query servers directly without a backend.

Code Examples

How to perform a DNS lookup programmatically.

Snippet Copied!
# Dig command (Linux/macOS)
dig A example.com +short

# Query specific server (e.g. Google)
dig @8.8.8.8 MX example.com

# Nslookup command (Windows/Linux)
nslookup -type=TXT example.com