Endpoints
GET /balance
Available, pending, frozen, and reserve balances.
GET
/api/v1/me/balancesecret keyReturn the merchant's current balance: available, pending settlement, frozen, and rolling reserve.
Request
curl https://api.ionea.io/api/v1/me/balance \ -H "Authorization: Bearer sk_test_51N8mP...exampleK3Y"
Response
{
"merchantId": "MCH-…",
"currency": "USD",
"balance": {
"available": 12480.55,
"pending": 230.10,
"reserved": 1500.00,
"outPending": 0,
"outSettled": 0
},
"feeSummary": { "platform": 0, "flat": 0 },
"movements": [],
"reserveSchedule": []
}