Skip to main content

Wallet Balance

This endpoint allows you get your Squad Wallet Balance.

NB: Please be informed that the wallet balance is in KOBO. (Please note that you can't get wallet balance for Dollar transactions).

Authorization

Any request made without the authorization key will fail with a 401 (Service Not Authorized) response code.

info

Authorization would be done via Headers using Keys gotten from your dashboard.

GET
https://sandbox-api-d.squadco.com/merchant/balance

This endpoint allows you get your Squad Wallet Balance. Amount is in KOBO

Parameters

Query

currency_id*

String

It only takes the value 'NGN'. (Please note that you can't get wallet balance for Dollar transactions)

Responses

200:OK
Success
{
"status": 200,
"success": true,
"message": "Success",
"data": {
"balance": "2367013",
"currency_id": "NGN",
"merchant_id": "SBN1EBZEQ8"
}
}
401:Unathorized
No Authorization
{
"success": false,
"message": "",
"data": {}
}
403:Forbidden
Invalid/Wrong API Keys
{
"success": false,
"message": "Merchant authentication failed",
"data": {}
}