Skip to content

Balance

This resource represents your Glomo balance. You can retrieve it to see the current balance on your Glomo account in all currencies enabled for your account.

Retrieve balances

Request

Retrieves available balances for all currencies.

Security
JWT
GET
/balances
curl -i -X GET \
  https://api.glomopay.com/api/v1/balances \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
availableArray of objects

The available balance for all currencies.

pendingArray of objects

The pending balance for all currencies.

deficitArray of objects

The amount owed to Glomo, for all currencies. This is non-zero when a chargeback or RFI debit was applied against an insufficient balance; it is cleared automatically on your next top-up.

funded_balancesobject

The Funded Balance, broken down by state. This key is present only for merchants on the Funded Balance model; it is absent for all other merchants.

Response
{ "available": [ {} ], "pending": [ {} ], "deficit": [ {} ], "funded_balances": { "available": [], "pending": [], "deficit": [] } }