> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equalsmoney.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Download transaction activity CSV

> Let's try downloading a CSV version. This will contain a slightly different set of information. [Learn more about the transaction activity CSV format]

# Step 1: Download a transaction activity CSV

Let's try downloading a CSV version. This will contain a slightly different set of information. [Learn more about the transaction activity CSV format](/pages/reports/about-reports#transaction-activity-and-statement-csv-format).

<Info>
  There are a number of additional parameters available for you to filter your results.
</Info>

In this example, we're downloading a CSV list of all transactions without adding any filters.

<CodeGroup>
  ```bash Sandbox theme={null}
  curl -i -X POST \
    https://api-sandbox.equalsmoney.com/v2/activity/download \
    -H 'Authorization: {apiKey}' \
    -H 'Content-Type: application/json' \
    -d '{
      "accountId": "{accountId}",
      "email": "{emailAddress}", # Your email address
      "name": "{name}", # Your name
      "startDate": "{startDate}", # The earliest date from which to retrieve results (includes transactions on this date)
      "endDate": "{endDate}" # The latest date until which to retrieve results (includes transactions on this date)
    }'
  ```

  ```bash Production theme={null}
  curl -i -X POST \
    https://api.equalsmoney.com/v2/activity/download \
    -H 'Authorization: {apiKey}' \
    -H 'Content-Type: application/json' \
    -d '{
      "accountId": "{accountId}",
      "email": "{emailAddress}", # Your email address
      "name": "{name}", # Your name
      "startDate": "{startDate}", # The earliest date from which to retrieve results (includes transactions on this date)
      "endDate": "{endDate}"  # The latest date until which to retrieve results (includes transactions on this date)
    }'
  ```
</CodeGroup>

If your request is successful, you'll receive a `202` response. If you're using a production environment, you'll receive an email containing a download link shortly after.

```json theme={null}
{
  "message": "accepted"
}
```
