Returns a list of supported countries and their offramp types
Successful response
const response = await fetch('https://sandbox-api.fonbnk.com/api/offramp/countries', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "countryIsoCode": "text", "currencyIsoCode": "text", "name": "text", "offrampTypes": [ { "type": "bank", "name": "text", "carriers": [ [ { "id": "text", "name": "text" } ] ] } ] } ]