List Payment Banks
This endpoint can be used to fetch the list of supported banks for Off-ramping.
Get all Banks
curl --request GET\
--url https://api.ngnc.online/transactions/v1/list_banks \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'ngnc-sec-key: NGNC_SECRET_KEY' \
{
"status": "success",
"BankList": [
{
"bank_name": "providus",
"value": '101',
},
{
"bank_name": "wema",
"value": '035',
}
],
"status_code": 200
}const options = {
method: 'GET',
headers: {
accept: 'application/json',
'ngnc-sec-key': 'NGNC_SECRET_KEY',
'content-type': 'application/json'
},
};
fetch('https://api.ngnc.online/transactions/v1/list_banks', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));import requests
url = "https://api.ngnc.online/transactions/v1/list_banks"
headers = {
"accept": "application/json",
"ngnc-sec-key": "NGNC_SECRET_KEY",
"content-type": "application/json"
}
response = requests.post(url, headers=headers)
print(response.text)Fetch Banks
GET https://api.ngnc.online/transactions/v1/list_banks
Headers
Name
Type
Description
ngnc-sec-key*
String
Get Key from Bridge App
Last updated