Accounts
Get balance transactions
Returns the transaction history of a balance account: deposit credits, payout debits, and reversals, newest-first with cursor pagination.
get/v1/accounts/{id}/balance/transactions
Path parameters
idstring required
Balance account ID
Query parameters
limitnumber
Maximum number of transactions to return
cursorstring
Cursor from a previous page
Headers
X-API-Keystring
API key
Response
Balance transactions
Example response
{
"data": [
{
"id": "line_abc123",
"amount": "100000",
"currency": "USD",
"description": "Deposit settled",
"postedAt": "2026-09-15T10:30:00Z"
}
]
}Changes
No recorded changes to this endpoint across all 5 revisions of this API.