API SpecificationFX Rate
Find FX-rates
Retrieves the latest foreign exchange (FX) rates. Optionally filter by target currency to return only the rate for a specific currency pair.
Authorization
bearerAuth AuthorizationBearer <token>
Add your API key here
In: header
Query Parameters
toCurrency?|
The target currency to filter by, as an ISO 4217 code. Must be provided together with fromCurrency. When omitted, all available rates are returned.
fromCurrency?|
The source currency to convert from, as an ISO 4217 code. Must be provided together with toCurrency. When omitted, all available rates are returned.
Response Body
application/json
text/plain
curl -X GET "https://connect.relograde.com/api/1.03/fx-rate"{ "fxRates": [ { "currencyFrom": "GBP", "currencyTo": "EUR", "rate": 1.169105 } ]}Both currencies must be provided
"Both 'fromCurrency' and 'toCurrency' must be provided"