Retrieve the latest forex price
Return the latest available exchange rate for one currency pair, as a daily open,
high, low, and close quote. This route doesn't accept date, sorting, or
pagination parameters. Use it to convert an amount from the base currency to the
quote currency: multiply by close.
/v3.0.0/forex-prices/latest/{identifier}Plan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
Parameters
Path parameters
identifierstringrequiredA pair code as BASEQUOTE or BASE/QUOTE, or a qualified pair symbol. The symbol of every List forex pairs result is accepted here.
EURUSDEUR/USDFX:EURUSDResponse
Response fields
symbolstringQualified pair symbol of the quoted pair, e.g. FX:EURUSD.
datestringThe quote day the prices refer to, in YYYY-MM-DD format.
opennumberFirst exchange rate of the quote day, in quote-currency units per one base-currency unit. null when the source provides no opening rate.
highnumberHighest exchange rate of the quote day. null when the source provides no high.
lownumberLowest exchange rate of the quote day. null when the source provides no low.
closenumberLast exchange rate of the quote day. This is the field to use for a single daily rate, and it is always present.
Data timing
The resource is the latest daily record available to the API, not an intraday
tick. While the current quote day is still open, its values can still change.
Inspect date rather than assuming the response is a live streaming rate.
Related endpoints
Use historical prices when you need more than one quote date.
curl "https://api.roic.ai/v3.0.0/forex-prices/latest/EURUSD?apikey=YOUR_API_KEY"{
"symbol": "FX:EURUSD",
"date": "2026-07-27",
"open": 1.1386,
"high": 1.14183,
"low": 1.1367,
"close": 1.1369
}