Zonemaster
The main purpose for this endpoint is to power the DNS Check widget but it can also be used to programmatically retrieve the test results of DNS checks run by Zonemaster. The endpoint has two modes, one to get an overview of available tests ("resource" parameter is hostname) and one to get the test details ("resource" parameter is test ID and "method" parameter is "details").
Please note that this endpoint is in development and features/availability can change.
GET /data/zonemaster/data.json?resource=8b9b9a1ab9200ed9&method=details
Code Examples
bash
curl --location --request GET "https://stat.ripe.net/data/zonemaster/data.json?resource=8b9b9a1ab9200ed9&method=details"
js
const requestOptions = {
method: 'GET',
};
fetch("https://stat.ripe.net/data/zonemaster/data.json?resource=8b9b9a1ab9200ed9&method=details", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));