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
Name | Type | Description |
---|---|---|
date | date | The exchange rates as-of this date, in the form YYYY-MM-DD . |
fromCurrency | string | The source currency to return the exchange rates for. |
rates | array of objects | The list of exchange rates. See attributes . |
Exchange Rate attributes
Name | Type | Description |
---|---|---|
currency | string | The currency code for the exchange rate. |
rate | number | The exchange rate value. |