List balances
GET/openapi/2026-07/shoplazza-payment/balance/details
Returns a paginated list of balance transaction details for the specified account type (available, pending, or fixed reserve).
Request
Query Parameters
available: available balance (acc_settle)pending: pending/unsettled balance (acc_payment)fixed_reserve: fixed reserve balance (acc_fixed_reserve)batch_settlement: batch settlement of completed paymentsfunds_reserved: funds moved into the rolling or fixed reservereleased_reserve: reserve released back to the available balancereturn_funds: refund-related funds returnedbalance_debit: balance debitedpay_in: funds paid into the available balanceadjustment: manual or system balance adjustmentpayout: payout sent to the merchant's bank accountpayout_fee: fee charged on a payoutactive_account_fee: active account service feewithdrawal_exchange_fee: currency exchange fee on withdrawal
Type of balance account to query:
Region of the merchant account (e.g., US, HK). Defaults to the merchant's default region
Currency of the balance account. Defaults to the merchant's default currency. Must match the specified region
Cursor for pagination
Page size (1-100, default 10)
Filter by transaction event type. Only applicable when balance_type is "available"; ignored when balance_type is "pending" or "fixed_reserve":
Filter transactions that occurred at or after this Unix timestamp (e.g., 1730548810)
Filter transactions that occurred at or before this Unix timestamp (e.g., 1730548810)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
payment: payment settlementreserve_release: scheduled release of reserved fundschargeback: chargeback debitchargeback_win: chargeback won; funds credited backrefund: refund settlementrefund_reversal: reversal of a previous refundship_ins_comm_transfer: shipping insurance commission transferred inship_ins_comm_reversal: reversal of a shipping insurance commission transferadjustment: manual or system settlement adjustmentdebit_negative_balance: debit to cover a negative balancedebit_negative_balance_reversal: reversal of a negative-balance debit- ]
error code
error message
data object
list object[]
List of balance transaction detail records
Time when the transaction occurred (e.g., 2018-11-02T12:30:10Z)
Associated business transaction ID
Type of settlement transaction to filter by:
Transaction amount; positive values represent credits and negative values represent debits
Currency code of the transaction (e.g., USD, EUR)
Account balance before this transaction was applied
Account balance after this transaction was applied
Human-readable description of the transaction
Cursor for pagination
Whether there are more records
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"trans_time": "string",
"trans_id": "string",
"trans_type": "string",
"trans_amount": "string",
"currency": "string",
"balance_before": "string",
"balance_after": "string",
"description": "string"
}
],
"cursor": "string",
"has_more": true
}
}