Skip to content

Reverse DNS


This endpoint returns details of reverse DNS delegations for IP prefixes in the RIPE region.

GET /data/reverse-dns/data.json?resource=193.0.0.0/21
Try it

Parameters

KeyValueInfoRequired
resourcePrefix for the query-YES

Data Output

KeyInfo
delegationscontains domain objects found in the RIPE Whois database related to this prefix (either exact match, more or less-specific) representing reverse delegated zones. Each line is described as "key" and "value" pair.
query_timeHolds the time the query was carried out
resourceDefines the resource used for the query

Code Examples

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

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

Available versions for this endpoint:

1.0 (current)