Overview
Wallet Activity
Returns paginated wallet transaction activity for payments, refunds, admin adjustments, screenshot usage, and report usage. Use this for account-level credit movement history.
Endpoint
GET
https://snapshot-api.mindiqglobal.com/api/v1/activity/walletQuery Parameters
| Name | Required | Type | Default | Description |
|---|---|---|---|---|
| page | No | integer | 0 | Zero-based page index. |
| size | No | integer | 20 | Number of records per page. |
| sort | No | string | createdAt,desc | Sorting format: `field,direction`. |
| from | No | datetime | None | Inclusive start datetime in ISO-8601 format. |
| to | No | datetime | None | Inclusive end datetime in ISO-8601 format. |
| referenceType | No | enum | None | Transaction reference type filter. Possible values: `PAYMENT`, `REFUND`, `ADMIN`, `MANUAL_SCREENSHOT`, `SCHEDULED_SCREENSHOT`, `SCREENSHOT_REPORT`. |
Success Response
{
"content": [
{
"referenceId": "RP_123",
"transactionType": "DEBIT",
"referenceType": "SCREENSHOT_REPORT",
"amount": 0.01,
"balanceBefore": 1,
"balanceAfter": 0.99,
"status": "SUCCESS",
"description": "Credits deducted for screenshot report generation",
"createdAt": "2026-08-06T09:31:00Z"
}
],
"page": 0,
"size": 20,
"totalElements": 1,
"totalPages": 1
}Response Body Parameters
| Name | Type | Description |
|---|---|---|
| content | array | Wallet activity records. |
| content[].referenceId | string | Transaction reference identifier. |
| content[].transactionType | enum | Credit/debit direction. Possible values: `DEBIT`, `CREDIT`. |
| content[].referenceType | enum | Transaction reference source. Possible values: `PAYMENT`, `REFUND`, `ADMIN`, `MANUAL_SCREENSHOT`, `SCHEDULED_SCREENSHOT`, `SCREENSHOT_REPORT`. |
| content[].amount | number | Transaction amount. |
| content[].balanceBefore | number | Wallet balance before transaction. |
| content[].balanceAfter | number | Wallet balance after transaction. |
| content[].status | string | Transaction status (example: `SUCCESS`). |
| content[].description | string | Transaction description. |
| content[].createdAt | datetime | Transaction timestamp in ISO-8601 format. |
| page | integer | Current page index. |
| size | integer | Page size. |
| totalElements | integer | Total number of records. |
| totalPages | integer | Total number of pages. |