/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
Body · 4
amountnumberRequiredAmount in the source currency.
fromstringRequiredSource ISO 4217 code.
tostringRequiredTarget ISO 4217 code.
datestringConversion date in YYYY-MM-DD. Defaults to today. Falls back to the most recent earlier fixing.
Request
POST /bff/currency/convert
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.