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

# Get Wallet Statement

> Returns your paginated wallet statement, credits, holds, debits, and releases.

<ParamField query="page" type="integer" default="1">
  Page number (starts at 1)
</ParamField>

<ParamField query="pageSize" type="integer" default="20">
  Items per page (max 100)
</ParamField>

<ParamField query="startDate" type="string">
  Filter start date (ISO 8601). Default: 30 days ago.
</ParamField>

<ParamField query="endDate" type="string">
  Filter end date (ISO 8601). Default: now.
</ParamField>

<ParamField query="type" type="string">
  Filter by transaction type: `Credit`, `Hold`, `Debit`, `Release`. Omit for all types.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "responseCode": "00",
    "message": "Request processed successfully",
    "data": {
      "items": [
        {
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
          "date": "2026-04-25T14:02:00+01:00",
          "type": "Credit",
          "description": "VA Funding - Ref: TRF-2026-001",
          "endpoint": null,
          "amount": 10000.00,
          "balanceAfter": 10000.00
        },
        {
          "id": "4fb96a75-6828-5673-c4gd-3d074g77bfb7",
          "date": "2026-04-25T14:05:00+01:00",
          "type": "Debit",
          "description": "API Call Charged",
          "endpoint": "GET /api/v1/accounts/0123456789",
          "amount": -25.00,
          "balanceAfter": 9975.00
        }
      ],
      "total": 156,
      "page": 1,
      "pageSize": 20
    }
  }
  ```
</ResponseExample>
