RRC Info
This endpoint provides (meta) information on collector nodes (RRCs) of the RIS network (http://ris.ripe.net). This includes geographical and topological location and information on collectors' peers.
/data/rrc-info/data.json
Parameters
Key | Value | Info | Required |
---|---|---|---|
- | - | - | - |
Data Output
Code Examples
bash
curl --location --request GET "https://stat.ripe.net/data/rrc-info/data.json"
js
const requestOptions = {
method: 'GET',
};
fetch("https://stat.ripe.net/data/rrc-info/data.json", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));