Skip to main content
GET
/
exchange-rate
Get exchange rates
curl --request GET \
  --url https://www.ruddr.io/api/workspace/exchange-rate \
  --header 'Authorization: Bearer <token>'
{
  "date": "2026-02-25",
  "fromCurrency": "USD",
  "rates": [
    {
      "currency": "AED",
      "rate": 3.6725
    },
    {
      "currency": "ARS",
      "rate": 1397.5059
    },
    {
      "currency": "AUD",
      "rate": 1.404667
    },
    {
      "currency": "CAD",
      "rate": 1.36775
    },
    {
      "currency": "EUR",
      "rate": 0.846479
    },
    {
      "currency": "GBP",
      "rate": 0.73764
    },
    {
      "currency": "INR",
      "rate": 90.951346
    },
    {
      "currency": "JPY",
      "rate": 156.18988889
    },
    {
      "currency": "USD",
      "rate": 1
    }
  ]
}
The exchange rates for the workspace’s currencies.

Authorizations

Authorization
string
header
required

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

Query Parameters

date
string<date>

The date to get the exchange rates for. If not set, the latest available exchange rate date is used.

fromCurrency
string

The currency to return exchange rates for. If not set, the workspace main currency is used.

Response

200

date
string<date>

The date the exchange rates are for. Will be in the form YYYY-MM-DD.

fromCurrency
string

The source currency code that rates are expressed relative to.

rates
object[]

The list of exchange rates from the source currency to each workspace currency.