Run in Apifox
API Overview# Item Value API Status Recommended Current Version v2.0 Backward Compatibility Yes Applicable Environment Production Applicable User Roles PSP and Direct Client
Description Retrieves balances for all currencies associated with the user. If participantCode is omitted, returns balances for all end users managed by the current user.Request Code Samples
curl --location '/v2.0/ledger/account?participantCode=undefined' Responses application/json
Generate Code
{
"code" : 200 ,
"msg" : "success" ,
"data" : {
"allBalances" : [
{
"participantCode" : "B0100106" ,
"balances" : [
{
"currency" : "USD" ,
"totalBalance" : "102350.00" ,
"availableBalance" : "87320.50" ,
"pendingBalance" : "15029.50"
} ,
{
"currency" : "EUR" ,
"totalBalance" : "8450.00" ,
"availableBalance" : "6200.00" ,
"pendingBalance" : "2250.00"
}
]
} ,
{
"participantCode" : "B0200202" ,
"balances" : [
{
"currency" : "GBP" ,
"totalBalance" : "5700.25" ,
"availableBalance" : "4100.00" ,
"pendingBalance" : "1600.25"
}
]
}
]
}
} Modified at 2026-04-14 17:11:45