DNS Lookup Tool

Query comprehensive DNS records for any domain. Get A, AAAA, MX, TXT, NS, CAA, SRV, DNSKEY and more.

DNS Records for jsdelivr.net

Records: 9
Response Time: 47ms
DNSSEC: Disabled
DNS Provider: NS1

Address Records

IP addresses the domain points to

1 record
Type Name Value TTL
A jsdelivr.net
1.2.3.4
1m

Name Records

Nameservers and aliases

6 records
Type Name Value TTL
NS jsdelivr.net
dns1.p08.nsone.net.
1h
NS jsdelivr.net
gns2.cloudns.net.
1h
NS jsdelivr.net
ns2.gcdn.services.
1h
NS jsdelivr.net
gns1.cloudns.net.
1h
NS jsdelivr.net
ns1.gcorelabs.net.
1h
SOA jsdelivr.net
ns1.gcorelabs.net. support.gcorelabs.com. 1745589715 5400 3600 1209600 60
1m

Text & Verification

SPF, DKIM, DMARC, and verification

2 records
Type Name Value TTL
TXT jsdelivr.net
"_globalsign-domain-verification=9Xqu2bonefjuoUF-XmyjAptAfuE-yStJz6wy9UnH-C"
1h
TXT jsdelivr.net
"google-site-verification=CvTdZ6pI_9DZf4kpmq5qI9wsyreNAKdAv90zMaeZc44"
1h

Queried at 5/12/2026, 8:59:00 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=jsdelivr.net
Response for jsdelivr.net Live Data
{
  "success": true,
  "data": {
    "domain": "jsdelivr.net",
    "queryTimeMs": 47,
    "dnssec": false,
    "dnsProvider": "NS1",
    "records": [
      {
        "type": "A",
        "name": "jsdelivr.net",
        "value": "1.2.3.4",
        "ttl": 60,
        "geo": {
          "ip": "1.2.3.4"
        }
      },
      {
        "type": "NS",
        "name": "jsdelivr.net",
        "value": "dns1.p08.nsone.net.",
        "ttl": 3600
      },
      {
        "type": "NS",
        "name": "jsdelivr.net",
        "value": "gns2.cloudns.net.",
        "ttl": 3600
      },
      {
        "type": "NS",
        "name": "jsdelivr.net",
        "value": "ns2.gcdn.services.",
        "ttl": 3600
      },
      {
        "type": "NS",
        "name": "jsdelivr.net",
        "value": "gns1.cloudns.net.",
        "ttl": 3600
      },
      {
        "type": "NS",
        "name": "jsdelivr.net",
        "value": "ns1.gcorelabs.net.",
        "ttl": 3600
      },
      {
        "type": "SOA",
        "name": "jsdelivr.net",
        "value": "ns1.gcorelabs.net. support.gcorelabs.com. 1745589715 5400 3600 1209600 60",
        "ttl": 60
      },
      {
        "type": "TXT",
        "name": "jsdelivr.net",
        "value": "\"_globalsign-domain-verification=9Xqu2bonefjuoUF-XmyjAptAfuE-yStJz6wy9UnH-C\"",
        "ttl": 3600
      },
      {
        "type": "TXT",
        "name": "jsdelivr.net",
        "value": "\"google-site-verification=CvTdZ6pI_9DZf4kpmq5qI9wsyreNAKdAv90zMaeZc44\"",
        "ttl": 3600
      }
    ],
    "queriedAt": "2026-05-12T08:59:00.977Z"
  }
}
Rate limit: 100 req/min
Authentication: API Key
Get API Access →