# List Generated Reports Rate Limit: 1 request per 1 minute Retrieves a list of all requested CSV reports and their current status. Asynchronous Workflow: 1. Call POST /history/exports to request a report. You will receive a reportId. 2. Periodically call this endpoint (GET /history/exports) to check the status of the report corresponding to your reportId. 3. Once the status is Finished, the downloadLink field will contain a URL to download the CSV file. Endpoint: GET /api/v0/history/exports Version: v0 Security: authWithSecretKey ## Response 200 fields (application/json): - `dataIncluded` (object) A set of booleans to select the data types for a report. - `dataIncluded.includeDividends` (boolean) Set to true to include dividend history in the report. - `dataIncluded.includeInterest` (boolean) Set to true to include interest payments in the report. - `dataIncluded.includeOrders` (boolean) Set to true to include historical orders in the report. - `dataIncluded.includeTransactions` (boolean) Set to true to include cash transactions (deposits, withdrawals, etc.) in the report. - `downloadLink` (string) A temporary URL to download the generated CSV file. This field will only be populated once the report status is Finished. The link may expire after a certain period. - `reportId` (integer) The unique identifier for the report. - `status` (string) The current status of the report generation. Poll this field until it becomes Finished. Enum: "Queued", "Processing", "Running", "Canceled", "Failed", "Finished" - `timeFrom` (string) - `timeTo` (string) ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 408 fields ## Response 429 fields