Skip to main content
GET
/
api
/
v1
/
billing
/
statement
Get Wallet Statement
curl --request GET \
  --url https://dev-api.onecluster.co/api/v1/billing/statement \
  --header 'Authorization: <api-key>'
{
  "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
  }
}

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.

page
integer
default:"1"
Page number (starts at 1)
pageSize
integer
default:"20"
Items per page (max 100)
startDate
string
Filter start date (ISO 8601). Default: 30 days ago.
endDate
string
Filter end date (ISO 8601). Default: now.
type
string
Filter by transaction type: Credit, Hold, Debit, Release. Omit for all types.
{
  "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
  }
}