Get Main Wallet Balances
GET/api/v1/wallet/balances
Retrieves the balance details of main wallets, including deposits, available balance, total spend, fees, and other balance types.
Request
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- MOD1
- MOD2
- ]
The name of the wallet.
The currency denomination of the wallet (e.g., USD, EUR).
The total amount of funds deposited into the wallet.
The amount of funds currently available for use in the wallet.
The total balance of the wallet, including reserved and pending balances.
The portion of the wallet's balance reserved and not immediately available for use.
The total amount spent from the wallet.
The cumulative fees applied to transactions from the wallet.
The balance awaiting confirmation or processing.
The balance that has been returned or refunded to the wallet.
The total balance that has been declined for transactions.
A reserve for covering potential declines. This feature is not implemented yet.
An enumeration.
An enumeration.
owner_id object
The unique identifier of the wallet owner.
string
string
The unique identifier of the wallet.
[
{
"name": "string",
"currency": "string",
"total_deposit": 0,
"available_balance": 0,
"total_balance": 0,
"reserved_balance": 0,
"total_spend": 0,
"total_fee": 0,
"pending_balance": 0,
"return_balance": 0,
"decline_balance": 0,
"rolling_balance": 0,
"purpose": "GENERAL",
"status": "ACTIVE",
"owner_id": "string",
"wallet_id": "string",
"incoming_balance": 0
}
]