🔗 REST API - Real-timeExchange Rates
Get specific rate
Retrieves the exchange rate for a specific base and quote asset at a given time or the current rate.
If you are using an exchange rate for mission-critical operations, then for best reliability, you should measure the difference between current time and the time returned from the response to ensure that value of the difference between those meets your internal requirements.
Authorization<token>
API Key is required to access the endpoints
In: header
Path Parameters
asset_id_base*string
Requested exchange rate base asset identifier (from the Metadata -> Assets)
asset_id_quote*string
Requested exchange rate quote asset identifier (from the Metadata -> Assets)
Response Body
curl -X GET "https://api-realtime.fx.finfeedapi.com/v1/exchangerate/string/string"{
"time": "2026-04-18T07:15:00.7834112Z",
"asset_id_base": "BTC",
"asset_id_quote": "USD",
"rate": 10000
}