Skip to main content
GET
/
exchange-rates
/
latest
/
{baseCurrency}
Latest exchange rates
curl --request GET \
  --url https://api.orqex.com/v1/exchange-rates/latest/{baseCurrency} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "base": "USD",
    "date": "2026-06-08 12:00:00",
    "rates": {
      "XOF": 600.5,
      "EUR": 0.92
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

baseCurrency
string
default:USD
required

ISO 4217 base currency code.

Response

200 - application/json

OK

data
object