# Request a CSV Report Rate Limit: 1 request per 30 seconds Initiates the generation of a CSV report containing historical account data. This is an asynchronous operation. The response will include a reportId which you can use to track the status of the generation process using the GET /history/exports endpoint. Endpoint: POST /api/v0/history/exports Version: v0 Security: authWithSecretKey ## Request 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. - `timeFrom` (string) The start date and time for the report period, in ISO 8601 format. - `timeTo` (string) The end date and time for the report period, in ISO 8601 format. ## Response 200 fields (application/json): - `reportId` (integer) The unique identifier for the report you have just requested. Use this ID to track its status via the GET /history/exports endpoint. ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 408 fields ## Response 429 fields