# MD for: https://www.mercadopago.com.br/developers/es/docs/reports/sales-report/download-report.md \# Download the report After manually creating the report, you can download it. Execute an API call using the code below, replacing \`statement\_id\` with the value obtained in the response of report creation. Also, make sure to specify the desired download format as shown in the table below. > WARNING > > Important > > Report downloads are only available for \`statements\`, i.e., reports generated manually. Report downloads for automatically generated reports (events) are not available at this time. \`\`\`curl curl --location --request GET 'https://api.mercadopago.com/v1/reports/marketplace\_sellers\_sales/statements/{{statement\_id}}/download?format=csv' \\ --header 'Authorization: Bearer {{TOKEN}}' \`\`\` #### Response \`\`\` COLLECTOR;COLLECTOR\_NICKNAME;PAYMENT;STATUS\_DESCRIPTION;STATUS\_DETAIL;PURCHASE\_ORDER;PAYMENT\_METHOD\_TYPE;TRANSACTION\_AMOUNT;DATE\_CREATED;DATE\_APPROVED;MARKETPLACE\_FEE\_AMOUNT;MERCADOPAGO\_FEE\_AMOUNT;TOTAL\_PAID\_AMOUNT;NET\_RECEIVED\_AMOUNT {{report rows}} \`\`\` | Field | Description | |-------------------------|----------------------------------------------------------------------------------------------------------------------| | \`statement\_id\` (required) | Identification of the report, obtained in the response of its creation. | | \`format\` (optional) | Format in which you want to download the report. It can be csv or json. Default is csv. | > In case there is an error in report creation, the returned status will be 404, and the response body will be empty.