Enter a domain, URL, IP, email, or record and get a focused result without setup.
Query DNS records for any domain
GET /v1/dns?domain=example.com
Use the browser tool for a fast answer, then move the same logic into scripts, monitoring, or product flows when it becomes repeatable.
Enter a domain, URL, IP, email, or record and get a focused result without setup.
Outputs highlight statuses, risks, records, and next actions instead of raw provider noise.
Use the request and response examples to turn a one-off check into an API call or recipe.
Used by people at amazing companies
Each page is shaped around a practical operational question, not just a raw lookup.
See the current DNS, registration, security, pricing, or reputation evidence.
Compare the result with related checks so the next move is easier to trust.
Copy examples, open linked tools, or move into API documentation when you need scale.
Transparent docs, authenticated requests, and visible reliability details make it easier to evaluate DomScan before you ship.
OpenAPI, Swagger, Postman, CLI, SDK, and MCP links are one click away.
Authenticated endpoints use API keys with clear credit costs before you call them.
Start with 10,000 monthly credits and upgrade only when usage grows.
Start from the curl and HTTP samples, then map the parameters into your application code.
Our tool supports all common DNS record types including A (IPv4 addresses), AAAA (IPv6 addresses), MX (mail servers with priority), NS (authoritative nameservers), TXT (text records for SPF/DKIM/DMARC), SOA (start of authority with serial numbers), CNAME (canonical name aliases), and CAA (certificate authority authorization for SSL).
DNS (Domain Name System) translates human-readable domain names into IP addresses. Our tool uses Cloudflare DNS-over-HTTPS to query authoritative DNS servers, retrieving current records with DNSSEC validation. Results show the exact configuration including TTL (time to live) values.
DNS records are critical for security: TXT records authenticate your emails via SPF, DKIM, and DMARC preventing spoofing. CAA records restrict which certificate authorities can issue SSL certificates. DNSSEC validates that DNS responses have not been tampered with. Use our email security checker to audit your email authentication setup.
GET /v1/dns/all?domain=example.com
{
"a": ["93.184.216.34"],
"mx": [{ "exchange": "mail.example.com", "priority": 10 }]
}
The browser experience previews DomScan's structured endpoints, so teams can validate a use case before writing code.
Our tool supports all common DNS record types including A (IPv4 addresses), AAAA (IPv6 addresses), MX (mail servers with priority), NS (authoritative nameservers), TXT (text records for SPF/DKIM/DMARC), SOA (start of authority with serial numbers), CNAME (canonical name aliases), and CAA (certificate authority authorization for SSL).
DNS (Domain Name System) translates human-readable domain names into IP addresses. Our tool uses Cloudflare DNS-over-HTTPS to query authoritative DNS servers, retrieving current records with DNSSEC validation. Results show the exact configuration including TTL (time to live) values.
DNS records are critical for security: TXT records authenticate your emails via SPF, DKIM, and DMARC preventing spoofing. CAA records restrict which certificate authorities can issue SSL certificates. DNSSEC validates that DNS responses have not been tampered with. Use our email security checker to audit your email authentication setup.
DNS changes can take up to 48 hours to propagate globally due to TTL caching. Use our DNS propagation checker to verify your records across multiple global nameservers. This helps confirm changes are live worldwide before updating production systems.
Yes! Our REST API provides programmatic DNS access. Use GET /v1/dns/all for all records, GET /v1/dns?type=MX for specific types, or GET /v1/dns/security for a complete security audit including DNSSEC and email authentication. Perfect for monitoring tools and CI/CD pipelines.