Exchange rate object

Get the exchange rates for the workspace currencies.

🚧

Exchange rates are only available in the pro plan and require the multicurrency feature to be turned on in your workspace.

Example

{
  "date": "2024-11-10",
  "fromCurrency": "USD",
  "rates": [   
    {
      "currency": "AUD",
      "rate": 1.446141
    },
    {
      "currency": "CAD",
      "rate": 1.352624
    },
    {
      "currency": "EUR",
      "rate": 0.897938
    },
    {
      "currency": "GBP",
      "rate": 0.747521
    },
    {
      "currency": "INR",
      "rate": 83.830056
    },
    {
      "currency": "JPY",
      "rate": 143.718
    },
    {
      "currency": "USD",
      "rate": 1
    }
  ]
}

Attributes

NameTypeDescription
datedateThe exchange rates as-of this date, in the form YYYY-MM-DD.
fromCurrencystringThe source currency to return the exchange rates for.
ratesarray of objectsThe list of exchange rates. See attributes .

Exchange Rate attributes

NameTypeDescription
currencystringThe currency code for the exchange rate.
ratenumberThe exchange rate value.