host.tools

DNS lookup (dig)

DNS /api/v1/dns/lookup

Query A, AAAA, MX, TXT, CNAME, NS, SOA, SRV, CAA, PTR — all types at once.

Host
doceorlando.com.br
Total time
954 ms
Source
live
Records found
8
A 1 record
73 ms
TTLTypeAnswer
1800s A 9.9.9.9
AAAA 1 record
71 ms
TTLTypeAnswer
1800s AAAA 2a02:4780:1:1552::b10:5fb0:2
MX 2 records
34 ms
TTLTypeAnswer
14400s MX 10 mx2.hostinger.com.br
14400s MX 5 mx1.hostinger.com.br
TXT 1 record
124 ms
TTLTypeAnswer
14400s TXT v=spf1 include:spf.titan.email include:spf.mx.hostinger.com include:relay.mailchannels.net ~all
NS 2 records
45 ms
TTLTypeAnswer
86400s NS ns1.dns-parking.com
86400s NS ns2.dns-parking.com
SOA 1 record
28 ms
TTLTypeAnswer
3600s SOA ns1.dns-parking.com dns.hostinger.com 2026050701
Raw JSON / API equivalent
JSON endpoint
/api/v1/dns/lookup?q=doceorlando.com.br
{
    "ok": true,
    "slug": "dns/lookup",
    "title": "DNS lookup (dig)",
    "ms": 954,
    "data": {
        "host": "doceorlando.com.br",
        "types": {
            "A": {
                "ms": 73,
                "count": 1,
                "records": [
                    {
                        "type": "A",
                        "ttl": 1800,
                        "host": "doceorlando.com.br",
                        "answer": "9.9.9.9"
                    }
                ]
            },
            "AAAA": {
                "ms": 71,
                "count": 1,
                "records": [
                    {
                        "type": "AAAA",
                        "ttl": 1800,
                        "host": "doceorlando.com.br",
                        "answer": "2a02:4780:1:1552::b10:5fb0:2"
                    }
                ]
            },
            "MX": {
                "ms": 34,
                "count": 2,
                "records": [
                    {
                        "type": "MX",
                        "ttl": 14400,
                        "host": "doceorlando.com.br",
                        "answer": "10 mx2.hostinger.com.br",
                        "priority": 10,
                        "target": "mx2.hostinger.com.br"
                    },
                    {
                        "type": "MX",
                        "ttl": 14400,
                        "host": "doceorlando.com.br",
                        "answer": "5 mx1.hostinger.com.br",
                        "priority": 5,
                        "target": "mx1.hostinger.com.br"
                    }
                ]
            },
            "TXT": {
                "ms": 124,
                "count": 1,
                "records": [
                    {
                        "type": "TXT",
                        "ttl": 14400,
                        "host": "doceorlando.com.br",
                        "answer": "v=spf1 include:spf.titan.email include:spf.mx.hostinger.com include:relay.mailchannels.net ~all"
                    }
                ]
            },
            "CNAME": {
                "ms": 268,
                "count": 0,
                "records": []
            },
            "NS": {
                "ms": 45,
                "count": 2,
                "records": [
                    {
                        "type": "NS",
                        "ttl": 86400,
                        "host": "doceorlando.com.br",
                        "answer": "ns1.dns-parking.com"
                    },
                    {
                        "type": "NS",
                        "ttl": 86400,
                        "host": "doceorlando.com.br",
                        "answer": "ns2.dns-parking.com"
                    }
                ]
            },
            "SOA": {
                "ms": 28,
                "count": 1,
                "records": [
                    {
                        "type": "SOA",
                        "ttl": 3600,
                        "host": "doceorlando.com.br",
                        "answer": "ns1.dns-parking.com dns.hostinger.com 2026050701",
                        "mname": "ns1.dns-parking.com",
                        "rname": "dns.hostinger.com",
                        "serial": 2026050701,
                        "refresh": 10000,
                        "retry": 2400,
                        "expire": 604800,
                        "min_ttl": 600
                    }
                ]
            },
            "SRV": {
                "ms": 72,
                "count": 0,
                "records": []
            },
            "PTR": {
                "ms": 110,
                "count": 0,
                "records": []
            },
            "CAA": {
                "ms": 128,
                "count": 0,
                "records": []
            }
        },
        "ms": 953
    },
    "source": "live",
    "meta": []
}
How to use DNS lookup (dig)
  1. 1
    Paste your input

    Enter the value at the top — domain, IP, URL, email, ASN, hash, whatever fits this tool. The smart input auto-detects type.

  2. 2
    Click "Inspect"

    host.tools issues real probes (DNS, HTTP, TCP, TLS, WHOIS where applicable) and renders the result in milliseconds.

  3. 3
    Open the API tab

    Every web tool has a sibling /api/v1/dns/lookup JSON endpoint with the same payload. One copy-as-curl click and you're scripting it.

Why this matters

DNS is the routing layer for everything you do on the internet. A bad TTL, a missing MX or an unsigned zone propagates outages and inboxes-full-of-spam in minutes. Verify before you ship.

API equivalent
/api/v1/dns/lookup?q=doceorlando.com.br
curl -s '/api/v1/dns/lookup?q=doceorlando.com.br'
Embed this tool
<iframe src="/dns/lookup?q={INPUT}&embed=1"
  width="100%" height="600" frameborder="0"></iframe>

Drop into any HTML page. The embed=1 flag hides nav and footer.

FAQ · DNS lookup (dig)

Common questions

Is DNS lookup (dig) free?
Yes — every tool is free on the web with a 200/hour rate limit per IP. The matching API endpoint /api/v1/dns/lookup is free up to 100 requests/hour, no key required.
Where does the data come from?
Real-time probes against authoritative sources (DNS root, RIRs, registries, the target server itself), plus partner data feeds from hostinfo.com (GeoIP/ASN) and hostcheck.com (reputation).
How fresh are the results?
Live by default. Cached for 5 minutes to make repeat queries instant; pass ?nocache=1 for a forced refresh.
Can I run this from the command line?
Yes — every tool ships with a copy-as-curl. There's also an official CLI: host.tools dns lookup YOUR_INPUT.
Can I monitor results over time?
Pro tier lets you schedule any tool to run every 1/5/15/60 min and alert on diff. See monitors.
host.tools Pro

Run DNS lookup (dig) on a schedule. Get pinged when it changes.

Pro gets you bulk lookups, monitors, webhook alerts, history, exports and 10,000 API calls/day. $19/mo.

  • Schedule any tool — every 1, 5, 15, 60 min
  • Diff against last run, alert on change
  • Webhook + email + Slack + PagerDuty + OpsGenie
  • Bulk CSV upload, 1,000 inputs per job
  • Export results as CSV / NDJSON / Excel
  • 90-day history, comparison view