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

# Download Statements

> Access monthly reward statements in PDF and CSV format.

Reward statements are generated automatically at the end of each calendar month. Two formats are available: a PDF summary for review and reporting, and a CSV export for automated processing and reconciliation.

## List and download statements

Use [List Statements](/api-reference/endpoints/rewards-statements/list-reward-statements) to find completed statements and retrieve their download URLs:

<Expandable title="Request">
  ```bash theme={null}
  curl -X GET 'https://api.sandbox.paxos.com/v2/rewards/statements?asset_type=USDG' \
    -H 'Authorization: Bearer {access_token}'
  ```
</Expandable>

<Expandable title="Response">
  ```json highlight={5,6,13,14} theme={null}
  {
    "items": [
      {
        "id": "{statement_id}",
        "status": "STATEMENT_STATUS_COMPLETED",
        "statement_type": "STATEMENT_TYPE_REWARDS_SUMMARY",
        "asset_type": "USDG",
        "created_at": "2024-02-01T00:00:00Z",
        "download_url": "https://..."
      },
      {
        "id": "{statement_id_2}",
        "status": "STATEMENT_STATUS_COMPLETED",
        "statement_type": "STATEMENT_TYPE_BALANCE_EXPORT",
        "asset_type": "USDG",
        "created_at": "2024-02-01T00:00:00Z",
        "download_url": "https://..."
      }
    ]
  }
  ```
</Expandable>

Use the `download_url` from a completed statement to fetch the file directly. Download URLs are presigned and expire — fetch the list again close to when you need to download.

## Statement types

| Type                             | Format | Contents                                                                                   |
| -------------------------------- | ------ | ------------------------------------------------------------------------------------------ |
| `STATEMENT_TYPE_REWARDS_SUMMARY` | PDF    | Monthly summary with daily balance totals, earnings rates, and per-payout-group breakdowns |
| `STATEMENT_TYPE_BALANCE_EXPORT`  | CSV    | Per-wallet daily balance export for automated processing and reconciliation                |

## Statement lifecycle

| Status                        | Description                                 |
| ----------------------------- | ------------------------------------------- |
| `STATEMENT_STATUS_GENERATING` | Files are currently being produced          |
| `STATEMENT_STATUS_COMPLETED`  | All files are available for download        |
| `STATEMENT_STATUS_FAILED`     | Generation failed; files may be unavailable |

Filter by `asset_type` to scope results to a specific stablecoin. Use [Get Statement](/api-reference/endpoints/rewards-statements/get-reward-statement) to retrieve a single statement by ID.

***

> Questions? Contact [Support](https://support.paxos.com).
