Liechtenstein IBAN
21 characters: the country code, two check digits, then the BBAN cut as below.
Anatomy of the official example
LI21088100002324013AA
- Country code
- Check digits
- Bank code
- Account number
The example comes from the ISO 13616 registry; it belongs to nobody. Positions count from the first character of the IBAN.
| ISO code | LI |
|---|---|
| Length | 21 characters |
| Check digits | positions 3 to 4, ISO 7064 mod 97-10 |
| Bank code | positions 5 to 9 · 5!n |
| Account number | positions 10 to 21 · 12!c |
| Official example | LI21 0881 0000 2324 013A A |
| SEPA area | member · SCT, SDD |
| Verification of Payee | no duty to date |
| Bank-code register | SIX BankMaster (Swiss IID / BC-Nummer register) |
SWIFT notation: n = digits, a = upper-case letters, c = alphanumeric characters; the exclamation mark fixes the exact length.
What the API checks on a Liechtenstein IBAN
- The length, the charset of every field and the mod-97 check digits.
- The bank code against SIX BankMaster (Swiss IID / BC-Nummer register), refreshed monthly: institution, matching BIC, status.
- The country's SEPA reachability and the open schemes (SCT, SDD).
- The Verification of Payee duty that does, or does not, bind the country's providers.
What the API answers for this code
The block below is the route's own answer, produced by the same code that serves api.ibanforge.com, on the register as of the date shown. Nothing is edited.
{
"valid": true,
"country": {
"code": "LI",
"name": "Liechtenstein"
},
"bic": {
"code": "BLFLLI2XXXX",
"bic8": "BLFLLI2X",
"bank_name": "LGT Bank AG",
"city": "Vaduz",
"source": "SIX BankMaster (Swiss IID / BC-Nummer register)",
"as_of": "2026-09",
"basis": "national_register",
"authoritative": true,
"lei": "7KDSOB6Z0X4S67TMX170"
},
"bank_code_check": {
"value": "08810",
"status": "verified",
"match": "register",
"register": "SIX BankMaster (Swiss IID / BC-Nummer register)",
"authoritative": true,
"institution": {
"name": "LGT Bank AG",
"street": "Postfach 85",
"post_code": "9490",
"town": "Vaduz",
"country": "LI"
},
"as_of": "2026-09"
},
"sepa": {
"member": true,
"schemes": [
"SCT",
"SDD"
],
"vop_required": false,
"vop_participant": false,
"basis": "epc_register"
},
"issuer": {
"type": "bank",
"name": "LGT Bank AG",
"classification": "default"
},
"risk_indicators": {
"country_risk": "standard",
"sepa_reachable": true,
"vop_coverage": false,
"test_bic": false
}
}Source: ISO 13616 registry for the length, layout and example; API answer captured on 2026-09-23.