> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Account Statements

> Retrieve account statements for users

# Retrieve Account Statement

Account statement is a chronological record of all financial activity associated with a user's account. It provides a transparent view of money moving in and out of the account over a selected period of time, giving users complete visibility into their account activity.

To retrieve the account statement, use the [`GET /user/statement`](/api-reference/user/get-account-statement) endpoint.

<Tabs>
  <Tab title="Sandbox">
    ```bash theme={null}
    curl --request GET \
       --url "https://gp-auth-module.sandbox.gnosispay.in/user/statement?limit=&cursor=&startDate=&endDate="
    ```
  </Tab>

  <Tab title="Production">
    ```bash theme={null}
    curl --request GET \
       --url "https://core.prod.gnosispay.com/user-api/user/statement?limit=&cursor=&startDate=&endDate="
    ```
  </Tab>
</Tabs>

## Types of Account Statement

| Transaction Type      | Possible Statuses                              |
| --------------------- | ---------------------------------------------- |
| **Card Transactions** | `pending`, `settled`, `cancelled`, `declined`  |
| **Deposits**          | `pending`, `approved`, `rejected`              |
| **Withdrawals**       | `pending`, `processing`, `completed`, `failed` |
