Get Payment Balance
Payment Collection
Get Payment Balances
Retrieve current pay-in and pay-out balances across every wallet your company holds, broken down by currency and country.
GET
Get Payment Balance
Overview
GET /payment/balance returns the current pay-in and pay-out sub-balances for every wallet your company holds, with one entry per (currency, country) pair. Use this before initiating a payout to verify funds are available, or to render a balances widget in your dashboard.
When to use it
- Pre-flight check before
POST /payment/payoutto avoid400 Insufficient balance. - Render a wallet/balance summary on a dashboard.
- Reconcile your local accounting balance against Cartevo.
Prerequisites
- Authenticated as a company user.
Request
Headers
| Name | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Response
200 — Success
| Field | Type | Description |
|---|---|---|
data.balances[] | array | One entry per wallet you own. Empty array if you have no wallets yet. |
data.balances[].currency | string | ISO 4217 (e.g. XAF, XOF, USD). |
data.balances[].country | string | ISO 3166-1 alpha-2 (e.g. CM, CI, US). |
data.balances[].payin_balance | number | Pay-in sub-balance — funds collected from end users, not yet moved. |
data.balances[].payout_balance | number | Pay-out sub-balance — funds available to disburse via POST /payment/payout. |
data.updated_at | string | ISO 8601. The instant Cartevo computed this snapshot. Real-time within ~1 second of any wallet-affecting transaction. |
About the two sub-balances: Each wallet maintains a separate pay-in and pay-out sub-balance. Use POST /wallets/{id}/transfer-internal (currently undocumented; reach out to support) to move funds between them when needed. The USD wallet is also the source-of-funds for card issuance and funding.
Error responses
| Status | Trigger |
|---|---|
401 | Missing or expired Bearer token. |
Code examples
cURL
Node.js (axios)
Related
POST /payment/payout— uses thepayout_balanceshown here.POST /payment/collect— credits thepayin_balance.- Glossary → Wallet — pay-in vs pay-out sub-balance explanation.