Balances
Shutterscore holds merchant funds for processing withdrawals and swaps as balances. Each balance represents the amount in a specific currency available to the merchant for performing transactions.
When working with Shutterscore, it may be important to know how much balance you have left to process transactions so that you do not run out of funds and disrupt your operation. Viewing your balance can either be via the merchant dashboard or via API.
View Balances on Dashboard
To view your balance on the merchant dashboard,
- Login to your merchant account
- Click on balances on the sidebar
The balances page will now load, showing the different currencies enabled for your account and the balances available.
View Balances via API
Merchants can retrieve their balances via API as well. This is especially useful when full operations automation is desired. The balances API returns the different balances for the different currencies enabled on your account. The requests are given below.
All Balances
{{baseurl}}/v1/merchant/public/balances
{
"status": true,
"statusCode": 200,
"message": "Merchant Balances retrieved successfully",
"data": [
{
"hash": "457cdeeb-9eda-4074-9031-a0c94aa790b4",
"type": "FIAT",
"currency_code": "NGN",
"balance": 253430.00138096,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-09-28T12:56:14.071Z",
"updated_at": "2022-10-06T10:20:36.000Z",
"pending": 0
},
{
"hash": "0c0e074f-04bd-44ed-93e1-652092922dc1",
"type": "CRYPTO",
"currency_code": "USDT",
"balance": 1.60072246,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-09-28T12:56:14.087Z",
"updated_at": "2022-10-06T10:20:34.000Z",
"pending": 45
},
{
"hash": "4d239809-2553-478f-85e4-4cee8133b7ca",
"type": "FIAT",
"currency_code": "ZAR",
"balance": 0,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:09:32.578Z",
"updated_at": "2022-10-03T07:09:32.578Z",
"pending": 0
},
{
"hash": "28e71476-3e43-44c1-8c13-2c76dbe49f17",
"type": "FIAT",
"currency_code": "KES",
"balance": 0,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:09:35.824Z",
"updated_at": "2022-10-03T07:09:35.824Z",
"pending": 0
},
{
"hash": "d2bd61bf-1d67-4778-a605-97993b84c04a",
"type": "FIAT",
"currency_code": "GHS",
"balance": 99890,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:09:40.131Z",
"updated_at": "2022-10-11T04:33:08.000Z",
"pending": 0
},
{
"hash": "eac9de49-7d83-4914-a5e5-ea30bca1edef",
"type": "FIAT",
"currency_code": "USD",
"balance": 0,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:09:45.598Z",
"updated_at": "2022-10-03T07:09:45.598Z",
"pending": 0
},
{
"hash": "6b5751e0-c573-4502-b869-14d629553712",
"type": "CRYPTO",
"currency_code": "USDC",
"balance": 2.96,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:09:50.450Z",
"updated_at": "2022-10-05T11:47:56.000Z",
"pending": 5
},
{
"hash": "f3e26f70-0a72-4a78-acc6-1349ee83ba22",
"type": "CRYPTO",
"currency_code": "BUSD",
"balance": 0,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:10:08.598Z",
"updated_at": "2022-10-03T07:10:08.598Z",
"pending": 0
},
{
"hash": "4437278c-0f29-4de1-b298-9bc6e3edc34e",
"type": "CRYPTO",
"currency_code": "BTC",
"balance": 0,
"liquidity_balance": 0,
"status": true,
"created_at": "2022-10-03T07:10:14.630Z",
"updated_at": "2022-10-03T07:10:14.630Z",
"pending": 0
}
]
}
Updated about 2 years ago