Static
Currencies
Fetch a list of supported currencies.
Responses
200
List of supported currencies
application/json
500
An error occurred
application/json
get
GET /currencies HTTP/1.1
Host: api.testbank.dev
Accept: */*
{
"data": [
{
"type": "currencies",
"id": "USD",
"attributes": {
"name": "United States Dollar",
"symbol": "$",
"emoji": "🇺🇸"
},
"meta": {
"exchangeRate": 1
}
}
]
}
Last updated