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
Get Bank
curl --request GET \
--url https://api.monime.io/banks/{idOrCode} \
--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"
}
}
Authorizations
Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>
Path Parameters
The id or code for the bank.
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 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.
Was this page helpful?
curl --request GET \
--url https://api.monime.io/banks/{idOrCode} \
--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"
}
}