Get all banks
Get all the supported banks when you are in the process of initiating a payout
Make a get request to all available banks
GET https://sandbox.moneymie.com/api/v1/payout/banks
Get a list of all the available banks when you want to create a transaction. You can narrow down to the specific banks available in the destination country by adding a query parameter in the body.
Query Parameters
Name
Type
Description
country *
String
The country you intend to get banks from
currency*
String
The currency the banks wll recieve in the country you entered
{
"code": "XXXX",
"message": "Invalid currency"
}// Fetch all the banks in Rwanda (country=RW and currency=RWF)
[
{
"bankName": "Ecobank RW",
"bankCode": "508"
}
]Last updated