Last updated 1 year ago
Fetch a list of supported currencies.
List of supported currencies
const response = await fetch('https://api.testbank.dev/currencies', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "type": "currencies", "id": "USD", "attributes": { "name": "United States Dollar", "symbol": "$", "emoji": "πΊπΈ" }, "meta": { "exchangeRate": 1 } } ] }