Network
Get ratings
Get node ratings.
GET
/
network
/
ratings
Get ratings
curl --request GET \
--url https://api.example.com/network/ratingsconst options = {method: 'GET'};
fetch('https://api.example.com/network/ratings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/network/ratings"
response = requests.get(url)
print(response.text)false{}Response
Successful response
The response is of type object.
⌘I
Get ratings
curl --request GET \
--url https://api.example.com/network/ratingsconst options = {method: 'GET'};
fetch('https://api.example.com/network/ratings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/network/ratings"
response = requests.get(url)
print(response.text)false{}
