v1

latestOpenAPI 3.0.32026-07-264414182.7 KB
Bank

List Banks

Retrieves a list of supported banks available in the specified country. Useful for rendering provider selection options during user payment setup or onboarding.

get/v1/banks

Query parameters

limitinteger

Maximum number of items to return in a single page. Must be between 1 and 50. Defaults to 10 if not specified.

Maximum number of items to return in a single page. Must be between 1 and 50. Defaults to 10 if not specified.

afterstring nullable

Pagination cursor for fetching the next page of results. Set this to the 'next' cursor value from a previous response to continue paginating forward.

Pagination cursor for fetching the next page of results. Set this to the 'next' cursor value from a previous response to continue paginating forward.

countrystring required

ISO 3166-1 alpha-2 country code (e.g., 'SL', 'GH') to filter banks by region.

ISO 3166-1 alpha-2 country code (e.g., 'SL', 'GH') to filter banks by region.

Headers

Monime-Version'caph.2025-08-23' | 'caph.2025-06-20' nullable

Specifies which version of the Monime API will handle this request.

Specifies which version of the Monime API will handle this request.

Response

OK

successboolean

Represents the status of the query operation, confirming if it was successful. This field is always true

Example response

{
  "result": [
    {
      "providerId": "slb004",
      "name": "Guarantee Trust Bank",
      "country": "SL"
    }
  ]
}