Navigation
POST finance

iban_generate

1 credit

Generate an IBAN from country code, bank code, and account number

Endpoint

POST /api/v1/tools/finance/iban_generate

Body Parameters

bank_code string required
country_code string required
account_number string required

Example

input Request
{
    "bank_code": "37040044",
    "country_code": "DE",
    "account_number": "0532013000"
}
output Response
{
    "iban": "DE89370400440532013000",
    "formatted": "DE89 3704 0044 0532 0130 00"
}

Response Format

HTTP/1.1 200 OK SUCCESS
{
  "success": true,
  "data": {
    "iban": "DE89370400440532013000",
    "formatted": "DE89 3704 0044 0532 0130 00"
},
  "meta": {
    "tool": "iban_generate",
    "credits_consumed": 1
  }
}
HTTP/1.1 422 Unprocessable Entity ERROR
{
  "success": false,
  "data": null,
  "error": {
    "code": "validation_error",
    "message": "The given data was invalid."
  }
}

Sign in to try this tool directly from the docs.

Code Examples
Request Example
lightbulb Developer Tip

Credits are deducted before execution. If the upstream tool fails, credits are automatically refunded to your account.