SwiftGoma.SwiftGoma

Search endpoints

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

Transactions & Balances

List supported countries

GET/api/v1/mbiyopay/countries

Lists the countries, networks, and currencies currently enabled on the connected MbiyoPay account.

Requires Authorization
ADMIN, ACCOUNTANT only
Session

Query parameters

allboolean
Return every country in one response, unpaginated.
pagenumber
Ignored when all=true. Defaults to 1.
limitnumber
Ignored when all=true. Defaults to 20.
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/mbiyopay/countries \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": [
    {
      "code": "CD",
      "name": "République démocratique du Congo",
      "networks": [
        "vodacom",
        "airtel",
        "orange",
        "africell"
      ],
      "currencies": [
        "USD",
        "CDF"
      ]
    }
  ]
}