DNS Lookup Tool
Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.
DNS Records for
unpkg.com
Records: 12
Response Time: 19ms
DNSSEC: Disabled
DNS Provider:
Cloudflare
Security:
β SPF soft
Address Records
IP addresses the domain points to
| Type | Name | Value | TTL |
|---|---|---|---|
| A | unpkg.com | 104.18.1.22 πΊπΈ US AS13335 CLOUDFLARENET - Cloudflare, Inc., US | 4m |
| A | unpkg.com | 104.18.0.22 πΊπΈ US AS13335 CLOUDFLARENET - Cloudflare, Inc., US | 4m |
| AAAA | unpkg.com | 2606:4700::6812:16 | 42s |
| AAAA | unpkg.com | 2606:4700::6812:116 | 42s |
Mail Records
Mail servers for the domain
| Type | Name | Value | TTL |
|---|---|---|---|
| MX | unpkg.com | 36 route2.mx.cloudflare.net. | 5m |
| MX | unpkg.com | 6 route3.mx.cloudflare.net. | 5m |
| MX | unpkg.com | 73 route1.mx.cloudflare.net. | 5m |
Name Records
Nameservers and aliases
| Type | Name | Value | TTL |
|---|---|---|---|
| NS | unpkg.com | alexia.ns.cloudflare.com. | 1d |
| NS | unpkg.com | weston.ns.cloudflare.com. | 1d |
| SOA | unpkg.com | alexia.ns.cloudflare.com. dns.cloudflare.com. 2403900751 10000 2400 604800 1800 | 30m |
Text & Verification
SPF, DKIM, DMARC, and verification
| Type | Name | Value | TTL |
|---|---|---|---|
| TXT | unpkg.com | "v=spf1 include:_spf.mx.cloudflare.net ~all" | 5m |
Service Discovery
Service endpoints and bindings
| Type | Name | Value | TTL |
|---|---|---|---|
| HTTPS | unpkg.com | \# 61 00 01 00 00 01 00 06 02 68 33 02 68 32 00 04 00 08 68 12 00 16 68 12 01 16 00 06 00 20 26 06 47 00 00 00 00 00 00 00 00 00 68 12 00 16 26 06 47 00 00 00 00 00 00 00 00 00 68 12 01 16 | 2m |
Queried at 5/12/2026, 8:53:58 AM
About DNS Records
The Domain Name System (DNS) is the internet's phonebook, translating human-readable domain names into IP addresses. DNS records contain essential configuration for how a domain behaves across email, web, security, and services.
Common Records
- A/AAAA - Map domain to IPv4/IPv6 addresses
- MX - Mail servers for receiving email
- TXT - SPF, DKIM, DMARC for email security
- NS - Authoritative nameservers
- CNAME - Aliases pointing to other domains
Security Records
- CAA - Restrict which CAs can issue certificates
- DNSKEY/DS - DNSSEC cryptographic keys
- TLSA - DANE TLS certificate authentication
- SSHFP - SSH host key fingerprints
- SRV - Service discovery and endpoints
REST API
Integrate DNS lookups into your applications with our REST API. Query all record types programmatically.
GET DNS Lookup
$
curl https://api.requestguard.com/v1/dns/lookup?domain=unpkg.com Response for unpkg.com Live Data
{
"success": true,
"data": {
"domain": "unpkg.com",
"queryTimeMs": 19,
"dnssec": false,
"dnsProvider": "Cloudflare",
"records": [
{
"type": "A",
"name": "unpkg.com",
"value": "104.18.1.22",
"ttl": 263,
"geo": {
"ip": "104.18.1.22",
"asn": 13335,
"country": "US",
"asnName": "CLOUDFLARENET - Cloudflare, Inc., US"
}
},
{
"type": "A",
"name": "unpkg.com",
"value": "104.18.0.22",
"ttl": 263,
"geo": {
"ip": "104.18.0.22",
"asn": 13335,
"country": "US",
"asnName": "CLOUDFLARENET - Cloudflare, Inc., US"
}
},
{
"type": "AAAA",
"name": "unpkg.com",
"value": "2606:4700::6812:16",
"ttl": 42,
"geo": {
"ip": "2606:4700::6812:16"
}
},
{
"type": "AAAA",
"name": "unpkg.com",
"value": "2606:4700::6812:116",
"ttl": 42,
"geo": {
"ip": "2606:4700::6812:116"
}
},
{
"type": "MX",
"name": "unpkg.com",
"value": "36 route2.mx.cloudflare.net.",
"ttl": 300
},
{
"type": "MX",
"name": "unpkg.com",
"value": "6 route3.mx.cloudflare.net.",
"ttl": 300
},
{
"type": "MX",
"name": "unpkg.com",
"value": "73 route1.mx.cloudflare.net.",
"ttl": 300
},
{
"type": "NS",
"name": "unpkg.com",
"value": "alexia.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "NS",
"name": "unpkg.com",
"value": "weston.ns.cloudflare.com.",
"ttl": 86400
},
{
"type": "SOA",
"name": "unpkg.com",
"value": "alexia.ns.cloudflare.com. dns.cloudflare.com. 2403900751 10000 2400 604800 1800",
"ttl": 1800
},
{
"type": "TXT",
"name": "unpkg.com",
"value": "\"v=spf1 include:_spf.mx.cloudflare.net ~all\"",
"ttl": 300
},
{
"type": "HTTPS",
"name": "unpkg.com",
"value": "\\# 61 00 01 00 00 01 00 06 02 68 33 02 68 32 00 04 00 08 68 12 00 16 68 12 01 16 00 06 00 20 26 06 47 00 00 00 00 00 00 00 00 00 68 12 00 16 26 06 47 00 00 00 00 00 00 00 00 00 68 12 01 16",
"ttl": 125
}
],
"queriedAt": "2026-05-12T08:53:58.867Z"
}
}