List reports
Retrieve a paginated list of all reports, ordered by creation date (newest first).
Requires an instance admin key; organization keys receive 403.
Authorization
BearerAuth AuthorizationBearer <token>
An instance admin key from ADMIN_API_KEYS, or an organization key (elmo_…) issued from the dashboard.
In: header
Query Parameters
page?integer
Page number, 1-based.
Range
1 <= valueDefault
1limit?integer
Items per page. Values above the maximum are clamped, not rejected.
Range
1 <= value <= 100Default
20Response Body
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/reports"{ "data": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "brandName": "string", "brandWebsite": "string", "status": "pending", "createdAt": "2019-08-24T14:15:22Z", "completedAt": "2019-08-24T14:15:22Z" } ], "reports": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "brandName": "string", "brandWebsite": "string", "status": "pending", "createdAt": "2019-08-24T14:15:22Z", "completedAt": "2019-08-24T14:15:22Z" } ], "pagination": { "page": 0, "limit": 0, "total": 0, "totalPages": 0 }}