v1
latestOpenAPI 3.1.02026-07-242735131.1 MBCurrency Conversion
Convert currency using flat rates
Convert currency using FX rates used in Remote’s estimation tools. These rates are not guaranteed to match final onboarding or contract rates.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (company_admin) | Convert currencies (convert_currency:read) | - |
post/v1/currency-converter/raw
Request body
Example request
{
"amount": 1000,
"source_currency": "USD",
"target_currency": "EUR"
}Response
Success
Example response
{
"data": {
"conversion_data": {
"exchange_rate": 0.85,
"source_amount": 1000,
"source_currency": {
"code": "CZK",
"name": "Czech Koruna",
"symbol": "Kč"
},
"target_amount": 850,
"target_currency": {
"code": "CZK",
"name": "Czech Koruna",
"symbol": "Kč"
}
}
}
}