Get a list of registered banks
Get a list of registered banks
To initiate a payout, you need to find and use the bank code of the destination bank.
GET
https://api.tryduplo.com/v1/merchants/utilities/banks/list?country=Nigeria
Authorization
string | set value to Bearer SECRET_KEY |
country
string require | The country in which you require a list of bank from |
cURL
Node
PHP
curl --location --request GET 'https://api.tryduplo.com/v1/merchants/utilities/banks/list?country=Nigeria' \
--header 'Authorization: Bearer SECRET_KEY'
1
var axios = require('axios');
2
3
var config = {
4
method: 'get',
5
url: 'https://api.tryduplo.com/v1/merchants/utilities/banks/list?country=Nigeria',
6
headers: {
7
'Authorization': 'Bearer SECRET_KEY'
8
}
9
};
10
11
axios(config)
12
.then(function (response) {
13
console.log(JSON.stringify(response.data));
14
})
15
.catch(function (error) {
16
console.log(error);
17
});
1
<?php
2
3
$curl = curl_init();
4
5
curl_setopt_array($curl, array(
6
CURLOPT_URL => 'https://api.tryduplo.com/v1/merchants/utilities/banks/list?country=Nigeria',
7
CURLOPT_RETURNTRANSFER => true,
8
CURLOPT_ENCODING => '',
9
CURLOPT_MAXREDIRS => 10,
10
CURLOPT_TIMEOUT => 0,
11
CURLOPT_FOLLOWLOCATION => true,
12
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
13
CURLOPT_CUSTOMREQUEST => 'GET',
14
CURLOPT_HTTPHEADER => array(
15
'Authorization: Bearer SECRET_KEY'
16
),
17
));
18
19
$response = curl_exec($curl);
20
21
curl_close($curl);
22
echo $response;
{
"data": [
{
"name": "Abbey Mortgage Bank",
"slug": "abbey-mortgage-bank",
"code": "801",
"longcode": "",
"gateway": null,
"pay_with_bank": false,
"active": true,
"is_deleted": false,
"country": "Nigeria",
"currency": "NGN",
"type": "nuban",
"id": 174,
"createdAt": "2020-12-07T16:19:09.000Z",
"updatedAt": "2020-12-07T16:19:19.000Z"
},
.
.
.
{
"name": "Zenith Bank",
"slug": "zenith-bank",
"code": "057",
"longcode": "057150013",
"gateway": "emandate",
"pay_with_bank": true,
"active": true,
"is_deleted": null,
"country": "Nigeria",
"currency": "NGN",
"type": "nuban",
"id": 21,
"createdAt": "2016-07-14T10:04:29.000Z",
"updatedAt": "2021-06-01T11:01:30.000Z"
}
],
"errors": {},
"message": "Request successful"
}
Last modified 12d ago