Get download statistics (per product)
curl --request GET \
--url https://v2.stopbars.com/downloads/statsimport requests
url = "https://v2.stopbars.com/downloads/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/downloads/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Installer
Get download statistics (per product)
GET
/
downloads
/
stats
Get download statistics (per product)
curl --request GET \
--url https://v2.stopbars.com/downloads/statsimport requests
url = "https://v2.stopbars.com/downloads/stats"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v2.stopbars.com/downloads/stats', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Query Parameters
Available options:
Pilot-Client, vatSys-Plugin, EuroScope-Plugin, Installer, SimConnect.NET Response
200
Stats returned (single product when specified, otherwise array of all including combinedTotal sum)
Was this page helpful?
