Balance
Endpoint
- Method:
GET - Path:
/v1/balance - Purpose: Check current wallet balances and limits
Request Payload
No request body.
Query Parameters
No query parameters.
Response
Success (200)
| Field | Type | Description |
|---|---|---|
balance | string | Total wallet balance |
availableBalance | string | Available amount for use |
pendingBalance | string | Amount in pending state |
currency | string | Currency code (example: BDT) |
lastUpdated | string | null | Last update timestamp |
limits | object | Transaction limits object |
limits.payin | object | PAYIN min/max limits |
limits.payin.min | number | Minimum PAYIN amount |
limits.payin.max | number | Maximum PAYIN amount |
limits.payout | object | PAYOUT min/max limits |
limits.payout.min | number | Minimum PAYOUT amount |
limits.payout.max | number | Maximum PAYOUT amount |
{
"balance": "0",
"availableBalance": "0",
"pendingBalance": "0",
"currency": "BDT",
"lastUpdated": null,
"limits": {
"payin": { "min": 200, "max": 25000 },
"payout": { "min": 100, "max": 25000 }
}
}