Getting Reports
The Reports API endpoints allow you to retrieve information about your reports. You can either fetch a list of all available reports or get detailed information about a specific report by using its ID. All requests require authentication using your API token.
Getting all ReportsGET /api/v1/reports/
Getting a specific Report ( Possible values: The numeric
ID for the Report. This can be retrieved for each report in the response for all
active Reports. )
GET /api/v1/reports/[ REPORT ID ]/
Getting all Reports
curl 'https://acmeinc.datareportive.com/api/v1/reports/' -X GET -H "Authorization: Token [ TOKEN ]"
Getting a specific Report
curl 'https://acmeinc.datareportive.com/api/v1/reports/[ REPORT ID ]/' -X GET -H "Authorization: Token [ TOKEN ]"