Billing

List wallet transactions

The wallet ledger — every credit and debit, most recent first (up to 100 entries). Call charges appear as `debit` entries with source `call`; completed top-ups as `credit` entries with source `topup`.

GET
/billing/transactions

The wallet ledger — every credit and debit, most recent first (up to 100 entries). Call charges appear as debit entries with source call; completed top-ups as credit entries with source topup.

Authorization

ApiKeyAuth
X-API-Key<token>

Voice platform authentication secret. Create one from the API Keys endpoint or your dashboard.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/billing/transactions"
{  "data": [    {      "id": "txn_3f9d2",      "type": "debit",      "source": "call",      "amountPaise": 1600,      "balanceAfterPaise": 48400,      "description": "Outbound call (4 min)",      "createdAt": "2026-06-21T10:05:00Z"    },    {      "id": "txn_2b7c1",      "type": "credit",      "source": "topup",      "amountPaise": 50000,      "balanceAfterPaise": 50000,      "paymentId": "pay_7d3k1",      "createdAt": "2026-06-21T09:58:00Z"    }  ]}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}