API Reference

Overview

Content Change Activity

Returns paginated wallet activity entries specifically for content-change checks. Use this when tracking debits/credits related only to content-change operations.

Endpoint

GEThttps://snapshot-api.mindiqglobal.com/api/v1/activity/content-changes

Query Parameters

NameRequiredTypeDefaultDescription
pageNointeger0Zero-based page index.
sizeNointeger20Number of records per page.
sortNostringcreatedAt,descSorting format: `field,direction`.
fromNodatetimeNoneInclusive start datetime in ISO-8601 format.
toNodatetimeNoneInclusive end datetime in ISO-8601 format.

Success Response

{
  "content": [
    {
      "transactionType": "DEBIT",
      "referenceType": "CONTENT_CHANGE",
      "referenceId": "801",
      "amount": 1,
      "balanceBefore": 120,
      "balanceAfter": 119,
      "status": "SUCCESS",
      "description": "Activity transaction",
      "createdAt": "2026-08-06T08:00:00Z"
    }
  ],
  "page": 0,
  "size": 20,
  "totalElements": 1,
  "totalPages": 1
}

Response Body Parameters

NameTypeDescription
contentarrayContent-change activity records.
content[].transactionTypeenumCredit/debit direction. Possible values: `DEBIT`, `CREDIT`.
content[].referenceTypeenumReference type for this endpoint. Expected value: `CONTENT_CHANGE`.
content[].referenceIdstringTransaction reference identifier.
content[].amountnumberTransaction amount.
content[].balanceBeforenumberWallet balance before transaction.
content[].balanceAfternumberWallet balance after transaction.
content[].statusstringTransaction status (example: `SUCCESS`).
content[].descriptionstringTransaction description.
content[].createdAtdatetimeTransaction timestamp in ISO-8601 format.
pageintegerCurrent page index.
sizeintegerPage size.
totalElementsintegerTotal number of records.
totalPagesintegerTotal number of pages.