JavaScript
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}}; fetch('https://sandboxapi.me-cash.com/v1/bank', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
"<unknown>"
Retrieves a list of available banks for a given country and currency.
Currency code (e.g., NGN)
Country code (e.g., NG)
List of banks retrieved successfully.
The response is of type any.
any
Was this page helpful?