Get a list of all available currencies
OK
const response = await fetch('//api.client.nbcgate.tech/currency', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": 0, "iso_int": 0, "iso_str": "text", "name": "text" } ] }