← Utilitaires pour développeurs

DNS inversé

GET /dns/reverse

Effectuez une recherche DNS inversée (PTR) lookup to trouver le hostname associated avec an IP address. Takes an IP address et renvoie its registered hostname. Utile pour les identifying servers by IP, verifying email sender authenticity, security investigations, et network administration tasks where you need to resolve IPs back to domain names.

Paramètres

ip requis

IP address

Exemples de requêtes

Utilisation de base
curl "https://nordapi.ee/api/v1/dns/reverse?ip=8.8.8.8"
Reverse DNS for Google DNS
curl "https://nordapi.ee/api/v1/dns/reverse?ip=8.8.8.8"
Reverse DNS for Cloudflare
curl "https://nordapi.ee/api/v1/dns/reverse?ip=1.1.1.1"

Réponse en direct

{
  "data": {
    "answers": [
      {
        "data": "dns.google.",
        "name": "8.8.8.8.in-addr.arpa.",
        "ttl": 12820,
        "type": 12
      }
    ],
    "comment": null,
    "domain": "8.8.8.8.in-addr.arpa",
    "status": 0,
    "type": "PTR"
  },
  "success": true
}