Get exchange rates [fiat to fiat]
Fetch the fiat rates for all specified fiat currency pairs. The rates are updated every 5 minutes.
Query parameters
Responses
200
Returns the available rates for the requested currency pairs.
application/json
get
GET /api/v1/exchange/rates/fiat?fromCurrency=EUR&toCurrency=AED HTTP/1.1
Host:
Accept: */*
200
Returns the available rates for the requested currency pairs.
{
"EUR": {
"EUR": "1",
"USD": "1.078738",
"BGN": "1.957527"
},
"USD": {
"EUR": "0.927009",
"USD": "1",
"BGN": "1.814645"
},
"GBP": {
"EUR": "1.164075",
"BGN": "2.278709"
}
}
{
"USD": {
"USD": "1",
"CHF": "0.935074"
},
"EUR": {
"USD": "1.186102",
"CHF": "1.109093"
},
"GBP": {
"USD": "1.38394",
"CHF": "1.294086"
}
}
Last updated
Was this helpful?