Calculate IBAN from Bank Details
iban.banking.calculateConvert domestic bank details into a valid IBAN with correct checksum for payment processing.
Instructions
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
| Name | Required | Description | Default |
|---|---|---|---|
| country_code | Yes | ISO 3166-1 alpha-2 country code (e.g. "DE", "GB", "FR", "NL") | |
| bank_code | Yes | Domestic bank code (e.g. "37040044" for Germany, "NWBK" for UK) | |
| account_number | Yes | Account number in domestic format | |
| branch_code | No | Branch/sort code if required by the country (e.g. "601613" for UK) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | No | Tool response payload. Shape varies per tool — consult the tool description and inputSchema. May be an object, array, string, or number depending on the upstream provider response. | |
| error | No | Present only when the call failed. Includes error code, message, request_id, and any provider-specific extras. |