Skip to content

Reverse DNS IP


This is just a simple lookup for the reverse DNS info against a single IP address.

GET /data/reverse-dns-ip/data.json?resource=193.0.6.139
Try it

Parameters

KeyValueInfoRequired
resourceIP address for the query-YES

Data Output

KeyInfo
resultA single domain name.
errorIf not empty explains an error that occurred (e.g. "Domain does not exists (NXDOMAIN)", "Timeout"...)

Code Examples

bash
curl --location --request GET "https://stat.ripe.net/data/reverse-dns-ip/data.json?resource=193.0.6.139"
js
const requestOptions = {
	method: 'GET',
};

fetch("https://stat.ripe.net/data/reverse-dns-ip/data.json?resource=193.0.6.139", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));

Available versions for this endpoint:

0.1 (current)