# 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
# Parameters
Key | Value | Info | Required |
---|---|---|---|
resource | IP address for the query | - | YES |
# Data Output
Key | Info |
---|---|
result | A single domain name. |
error | If not empty explains an error that occurred (e.g. "Domain does not exists (NXDOMAIN)", "Timeout"...) |
# Code Examples
curl --location --request GET "https://stat.ripe.net/data/reverse-dns-ip/data.json?resource=193.0.6.139"
var 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 data call:
0.1
This is the current and only version of this API call.