SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Transactions & Balances

Get wallet balances

GET/api/v1/mbiyopay/balances

Returns the platform's current MbiyoPay wallet balances.

Requires Authorization
ADMIN, ACCOUNTANT only
Session

Query parameters

currencystring
Filter to one currency.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/mbiyopay/balances \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "balances": [
      {
        "currency": "USD",
        "amount": "820.00"
      },
      {
        "currency": "CDF",
        "amount": "2100000"
      },
      {
        "currency": "RWF",
        "amount": "450000"
      }
    ]
  }
}