Get Balance Details of a Card
GET/api/v1/cards/card/balance
Retrieves the balance details of a specified card. This includes various components such as the total limit, available balance, spent amount, and more.
Request
Query Parameters
The unique identifier of the card for which balance details are being requested.
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- MOD1
- MOD2
card_id object required
The unique identifier of the card.
string
string
The total spending limit of the card over its entire lifetime.
The current available balance on the card.
The total amount spent using the card. This is equivalent to the 'used' amount in other endpoints.
The balance of the card at the time of its issuance.
The total amount added to the card through top-ups.
The maximum amount allowed for a single transaction on the card.
The total amount in transactions that are currently pending approval.
The total sum of fees incurred by the card.
The total amount of external payments received on the card.
The total amount withdrawn from the card, including decrease limit operations.
{
"card_id": "string",
"limit": 0,
"available": 0,
"spend": 0,
"opening_balance": 0,
"topup_balance": 0,
"limit_per_transaction": 0,
"pending_balance": 0,
"fees_balance": 0,
"incoming_balance": 0,
"withdrawal_balance": 0
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD1
- MOD2
- ]
- ]
detail object[]
loc object[]required
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}