Skip to main content
GET
/
balances
/
accounts
/
{accountNumber}
/
sub-balances
cURL
curl --request GET \
  --url https://api.spotflow.co/api/v1/balances/accounts/{accountNumber}/sub-balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "accountNumber": "7706438396",
    "currency": "GHS",
    "balance": 3,
    "availableBalance": 3,
    "accountTag": "main-account",
    "parentAccountNumber": "string"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

accountNumber
string
required

Response

A JSON array of balances objects.

accountNumber
string
required
Example:

"7706438396"

currency
string
required
Example:

"GHS"

balance
number
required
Example:

3

availableBalance
number
required
Example:

3

accountTag
string
Example:

"main-account"

parentAccountNumber
string
Example:

"string"