iban.pizza
API reference

Build an IBAN and validate it, openiban.com compatible.

This route belongs to the compatibility surface despite its path, which the upstream service defined.

GET
/v2/calculate/{countryCode}/{bankCode}/{accountNumber}

This route belongs to the compatibility surface despite its path, which the upstream service defined.

Path Parameters

countryCode*string
bankCode*string
accountNumber*string

Response Body

application/json

curl -X GET "https://example.com/v2/calculate/string/string/string"
{  "valid": true,  "messages": [    "string"  ],  "iban": "string",  "bankData": {    "bankCode": "string",    "name": "string",    "zip": "string",    "city": "string",    "bic": "string"  },  "checkResults": {    "property1": true,    "property2": true  }}