Currency
GET
/v1/currency
const url = 'https://example.com/api/v1/currency';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/currencyResponses
Section titled “ Responses ”OK
Media type application/json
object
code
string
decimals
integer
local
string
name
string
symbol
string
Example generated
{ "code": "example", "decimals": 1, "local": "example", "name": "example", "symbol": "example"}