← Back to catalog
iban.calculate
mock data$0.002 / callCalculate IBAN
Calculate a valid IBAN from domestic bank routing details: country code, bank code, account number, and optional branch code. Returns the computed IBAN with correct checksum. Useful for payment automation.
Input schema
bank_coderequired
stringDomestic bank code (e.g. "37040044" for Germany, "NWBK" for UK)
branch_code
stringBranch/sort code if required by the country (e.g. "601613" for UK)
country_coderequired
stringISO 3166-1 alpha-2 country code (e.g. "DE", "GB", "FR", "NL")
account_numberrequired
stringAccount number in domestic format
Call via REST
curl -X POST https://unifyapi.pro/api/call/iban.calculate \
-H "Authorization: Bearer uak_live_..." \
-H "Content-Type: application/json" \
-d '{"bank_code":"<bank_code>","branch_code":"<branch_code>","country_code":"<country_code>","account_number":"<account_number>"}'