Access your project's collected data programmatically using the download API:

API Endpoint https://{{ request.get_host }}/api/project/{{ project.url_id }}/data/
Authentication

Include your token in the Authorization header:

Authorization: Token your_token_here

Generate or renew your access token below. Access tokens are valid for a limited time of a maximum of 90 days.

Example {% if project.super_secret %}

GET https://{{ request.get_host }}/{{ project.url_id }}/download/ -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b' -H 'Super-Secret: yourPassword'

Because this project has enhanced encryption enabled, the encryption password must also be included in the request via the Super-Secret header.

{% else %}
GET /api/project/AqDYFgrX/data/ -H 'Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'
{% endif %}

The documentation provides some examples how to do this in a Python- or R-Script.