DocsAPI ReferenceCurrency/bff/currency/convert
postCurrencyAdmin BFF

/bff/currency/convert

Utility for forms: converts amount from from to to using the cross-rate resolver (CNB / ECB / Fawaz combined; pivots through CZK / EUR / USD when no direct quote exists). Result is rounded to the target currency ISO 4217 decimals.

CurrencypostBffCurrencyConvert

Parameters

4 body

4 total
Body · 4
amountnumberRequired

Amount in the source currency.

fromstringRequired

Source ISO 4217 code.

tostringRequired

Target ISO 4217 code.

datestring

Conversion date in YYYY-MM-DD. Defaults to today. Falls back to the most recent earlier fixing.

Request

POST /bff/currency/convert

post
curl -X POST "https://api.bizkithub.com/bff/currency/convert" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "amount": 100,
  "from": "EUR",
  "to": "CZK",
  "date": "2026-04-27"
}'

Response

JSON payload

{
  "amount": 2435.5,
  "rate": 24.355,
  "rateDate": "2026-04-27"
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key