One of our values is the openness of our data. All the data collected through the app is open for anyone to download, analyze and share forever. With that we have created multiple ways to download data from the app.
- iOS & Android – Download the Android app. Navigate to the desired counterpoint, scroll down and you will see a button named “Download Data”. Click it and this will send yourself an email.
- Data Explorer – Use the extensive web app we have built. Accessed in this website’s menu above ↑
- API – For the more nerdy data folks, we also have a public API you can hit and fetch all data on specific counterpoints. All information is located in our API documentation under the section “CounterPoints Public”, the rest, you will not be able to access as it is for admin purposes only. If you need a hand exploring this docs, let us know and we can help you out and explain things better.
- https://api.counterpointapp.org/#api-Counterpoints_Public
- Sample API Calls
- Minute by Minute Data of a CounterPoint with an ID
- Parameters: https://api.counterpointapp.org/api/v2/counterpoints/<INSERT_ID>?outputFormat=<INSERT_FORMAT>&downloadAsFile=<INSERT_DOWNLOAD_AS_FILE>
- e.g. https://api.counterpointapp.org/api/v2/counterpoints/4?outputFormat=json&downloadAsFile=true
- <INSERT_ID> = 4
- <INSERT_DOWNLOAD_AS_FILE> = true or false
- <INSERT_FORMAT> = json or csv
- Count History of a CounterPoint with an ID
- Parameters: https:/api.counterpointapp.org/api/v2/counterpoints/<INSERT_ID>/stats?outputFormat=<INSERT_FORMAT>&downloadAsFile=<INSERT_DOWNLOAD_AS_FILE>
- e.g. https://api.counterpointapp.org/api/v2/counterpoints/4/counthistory/stats?outputFormat=json&downloadAsFile=true
- <INSERT_ID> = 4
- <INSERT_DOWNLOAD_AS_FILE> = true or false
- <INSERT_FORMAT> = json or csv
- Overall Stats of a CounterPoint with an ID
- Parameters: https://api.counterpointapp.org/api/v2/counterpoints/<INSERT_ID>/stats?outputFormat=<INSERT_FORMAT>&downloadAsFile=<INSERT_DOWNLOAD_AS_FILE>
- e.g. https://api.counterpointapp.org/api/v2/counterpoints/4/stats?outputFormat=json&downloadAsFile=true
- <INSERT_ID> = 4
- <INSERT_DOWNLOAD_AS_FILE> = true or false
- <INSERT_FORMAT> = json or csv
- Minute by Minute Data of a CounterPoint with an ID