New caph API version is out! check it out 🚀
New caph API version is out! check it out 🚀
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>"
}
}
Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>
The ISO 3166-1 alpha-2 code of the country
2
OK
The response is of type object
.
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>"
}
}