cURL
curl --request GET \ --url https://api.cartevo.co/api/v1/payment/balance \ --header 'Authorization: Bearer <token>'
{ "success": true, "message": "Balance retrieved successfully", "data": { "balances": [ { "currency": "XAF", "country": "CM", "payin_balance": 50000, "payout_balance": 30000 } ], "updated_at": "2025-01-08T12:00:00.000Z" } }
Get balance information including available and pending amounts
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Balance retrieved successfully
true
"Balance retrieved successfully"
Show child attributes
"XAF"
"CM"
50000
30000
"2025-01-08T12:00:00.000Z"