# RRC Info
This data call provides (meta) information on collector nodes (RRCs) of the RIS network (https://www.ripe.net/analyse/internet-measurements/routing-information-service-ris/routing-information-service-ris). This includes geographical and topological location and information on collectors' peers.
/data/rrc-info/data.json
# Parameters
Key | Value | Info | Required |
---|---|---|---|
- | - | - | - |
# Output
# Code Examples
curl --location --request GET "https://stat.ripe.net/data/rrc-info/data.json"
var 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));