# Wallet transactions, newest first

Source: https://docs.usetone.ai/reference/wallet/transactions

> The ledger behind the balance, and the source of truth for it: every top-up, call, number purchase, monthly rental and compliance verdict.

`GET /v1/wallet/transactions`
The ledger behind the balance, and the source of truth for it: every top-up, call, number purchase, monthly rental and compliance verdict. Append-only — a correction is a new compensating row, never an edit.

Requires the `read` scope.

## Parameters

| Name | In | | Meaning |
|---|---|---|---|
| `limit` | query | optional | How many results to return. 1-100, defaulting to 25. |
| `cursor` | query | optional | Opaque page cursor from the previous response. |

## Response



### Example response

```json
{
  "data": [
    {
      "amountPaise": 0,
      "balanceAfterPaise": 0,
      "createdAt": "2026-08-25T09:14:22Z",
      "description": "Call to +919876543210 (45s)",
      "entryType": "topup",
      "id": "1043827"
    }
  ]
}
```
