DNS Lookup Tool

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

DNS Records for tempmail.com

Records: 7
Response Time: 392ms
DNSSEC: Disabled
DNS Provider: Unknown
Security: ✓ SPF strict

Address Records

IP addresses the domain points to

1 record
Type Name Value TTL
A tempmail.com
103.224.182.246
🇦🇺 AU AS133618 TRELLIAN-AS-AP Trellian Pty. Limited, AU
22m

Mail Records

Mail servers for the domain

1 record
Type Name Value TTL
MX tempmail.com
10 park-mx.above.com.
15m

Name Records

Nameservers and aliases

3 records
Type Name Value TTL
NS tempmail.com
ns2.abovedomains.com.
3h
NS tempmail.com
ns1.abovedomains.com.
3h
SOA tempmail.com
ns1.abovedomains.com. hostmaster.trellian.com. 2026051101 10800 3600 604800 3600
1m

Text & Verification

SPF, DKIM, DMARC, and verification

2 records
Type Name Value TTL
TXT _dmarc.tempmail.com
"v=spf1 ip6:fdcf:abda:4154::/48 -all"
1h
TXT tempmail.com
"v=spf1 ip6:fdcf:abda:4154::/48 -all"
2m

Queried at 5/10/2026, 9:31:55 PM

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=tempmail.com
Response for tempmail.com Live Data
{
  "success": true,
  "data": {
    "domain": "tempmail.com",
    "queryTimeMs": 392,
    "dnssec": false,
    "dnsProvider": null,
    "records": [
      {
        "type": "A",
        "name": "tempmail.com",
        "value": "103.224.182.246",
        "ttl": 1352,
        "geo": {
          "ip": "103.224.182.246",
          "asn": 133618,
          "country": "AU",
          "asnName": "TRELLIAN-AS-AP Trellian Pty. Limited, AU"
        }
      },
      {
        "type": "MX",
        "name": "tempmail.com",
        "value": "10 park-mx.above.com.",
        "ttl": 945
      },
      {
        "type": "NS",
        "name": "tempmail.com",
        "value": "ns2.abovedomains.com.",
        "ttl": 12170
      },
      {
        "type": "NS",
        "name": "tempmail.com",
        "value": "ns1.abovedomains.com.",
        "ttl": 12170
      },
      {
        "type": "SOA",
        "name": "tempmail.com",
        "value": "ns1.abovedomains.com. hostmaster.trellian.com. 2026051101 10800 3600 604800 3600",
        "ttl": 60
      },
      {
        "type": "TXT",
        "name": "_dmarc.tempmail.com",
        "value": "\"v=spf1 ip6:fdcf:abda:4154::/48 -all\"",
        "ttl": 3600
      },
      {
        "type": "TXT",
        "name": "tempmail.com",
        "value": "\"v=spf1 ip6:fdcf:abda:4154::/48 -all\"",
        "ttl": 125
      }
    ],
    "queriedAt": "2026-05-10T21:31:55.581Z"
  }
}
Rate limit: 100 req/min
Authentication: API Key
Get API Access →