Get top contributors
curl --request GET \
--url https://v2.stopbars.com/contributions/leaderboardimport requests
url = "https://v2.stopbars.com/contributions/leaderboard"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributions/leaderboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"vatsimId": "<string>",
"name": "<string>",
"count": 123
}
]Contributions
Get top contributors
GET
/
contributions
/
leaderboard
Get top contributors
curl --request GET \
--url https://v2.stopbars.com/contributions/leaderboardimport requests
url = "https://v2.stopbars.com/contributions/leaderboard"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributions/leaderboard', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));[
{
"vatsimId": "<string>",
"name": "<string>",
"count": 123
}
]Was this page helpful?
