List contributions
curl --request GET \
--url https://v2.stopbars.com/contributionsimport requests
url = "https://v2.stopbars.com/contributions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Contributions
List contributions
GET
/
contributions
List contributions
curl --request GET \
--url https://v2.stopbars.com/contributionsimport requests
url = "https://v2.stopbars.com/contributions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/contributions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Headers
Bearer API key. When provided, returns only that user's contributions and includes summary counts.
Query Parameters
When true, returns only contribution id, airport ICAO, package name, and simulator.
Include aggregate counts for contribution statuses when true.
Response
200
Contributions listed
Was this page helpful?
