API Documentation
Core Resources
- Webhook
Checkout
- Session
Payments
- Payment Codes
- Payment Links
- Payment Pages
Transfers
- Payout
- Bulk Payout
Embedded Finance
- Financial Account
Extra Resources
- KYC Verification
- Financial Providers
- Banks
- Momos
- Available Countries
List Banks
List the banks that Monime supports in a country.
curl --request GET \
--url https://api.monime.io/banks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"messages": [
"<any>"
],
"result": [
{
"id": "fpr-TJh76H8hj778hftdtu66gjio",
"code": "SLB0004",
"name": "Guarantee Trust Bank",
"country": "SL",
"status": {
"active": true
},
"featureSet": {
"payout": {
"canPayTo": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"payment": {
"canPayFrom": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"kycVerification": {
"canVerifyAccount": true,
"metadata": {}
}
},
"createTime": "2023-11-07T05:31:56Z",
"updateTime": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"count": 1,
"total": 1,
"next": "<string>"
}
}
Authorizations
Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>
Query Parameters
The ISO 3166-1 alpha-2 code of the country
2
Response
Represents the status of the query operation, confirming if it was successful. This field is always true
Contains a list of messages providing relevant information or feedback related to the query or operation
The list of items in the response
The ID of the bank.
"fpr-TJh76H8hj778hftdtu66gjio"
The unique code assigned to a bank by Monime to identify it within Monime's ecosystem.
"SLB0004"
The name of the bank.
"Guarantee Trust Bank"
The country of the bank.
"SL"
The status of the bank's operations within monime'.
Whether or not this bank is active within Monime.
The set of Monime features that the bank supports.'
The bank's payout feature information.
Whether or not Monime can pay out to an account in the bank.
The supported payout schemes of the bank.
The bank's payment feature information.
Whether or not Monime can accept payment from an account in the bank.
The supported payment schemes of the bank.
The bank's KYC verification feature information.
The time the bank's support was added.
The last time the bank's support was updated.
The pagination info associated with the response
The number of items in this list response.
x >= 0
The estimated total number of items matching the request.
x >= 0
This identifier marks the first item in this response list when moving backward through the results, or the last item when moving forward. Use this identifier with the 'after' or 'before' query parameter in your next request to get the items that come after or before this item in the overall list respectively.
Was this page helpful?
curl --request GET \
--url https://api.monime.io/banks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"messages": [
"<any>"
],
"result": [
{
"id": "fpr-TJh76H8hj778hftdtu66gjio",
"code": "SLB0004",
"name": "Guarantee Trust Bank",
"country": "SL",
"status": {
"active": true
},
"featureSet": {
"payout": {
"canPayTo": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"payment": {
"canPayFrom": true,
"schemes": [
"<string>"
],
"metadata": {}
},
"kycVerification": {
"canVerifyAccount": true,
"metadata": {}
}
},
"createTime": "2023-11-07T05:31:56Z",
"updateTime": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"count": 1,
"total": 1,
"next": "<string>"
}
}