Skip to main content
GET
/
exchange-rates
/
currencies
Supported currencies
curl --request GET \
  --url https://api.orqex.com/v1/exchange-rates/currencies \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "US Dollar",
      "symbol": "$",
      "code": "USD",
      "icon_url": "<string>"
    }
  ],
  "meta": {
    "total": 123,
    "last_updated": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

OK

data
object[]
meta
object