ibanchecker.cash
Payments & BankingJune 3, 2026 · 4 min read

How to Check an IBAN Online — Free Validation Tools

Validate any IBAN instantly online. Learn how IBAN checking works and which free tools to use.

Share

Checking an IBAN online before sending a payment takes less than ten seconds and can prevent a transfer from being rejected, returned, or misdirected. This guide explains what online IBAN validation actually checks, which free tools are available, and how businesses can automate validation at scale.

What Does an Online IBAN Check Verify?

A good IBAN validator checks three distinct things:

  • Country code:The first two letters must match a country that uses the IBAN standard. An IBAN starting with “US” or “CN” is immediately invalid — those countries do not issue IBANs.
  • Length: Each country has a fixed IBAN length. A German IBAN must be exactly 22 characters; a Turkish IBAN must be exactly 26. Too long or too short means the IBAN is malformed.
  • Check digits (MOD-97): The two digits in positions 3–4 are calculated using the MOD-97 algorithm defined in ISO 13616. Any single typo or transposed digit changes the expected check digit, causing the IBAN to fail validation. This is the most powerful check — it catches approximately 97% of random transcription errors.

Some validators — including ibanchecker.cash — go further and also return the bank name and BIC associated with the account, so you can confirm that the IBAN belongs to the bank you expect.

What an Online Check Cannot Verify

Format and check-digit validation is powerful, but it has a hard limit: it cannot confirm that the account actually exists or that it belongs to the intended recipient. A valid IBAN that passes all checks could still belong to the wrong person. This is why payment regulations like PSD2 are introducing “Confirmation of Payee” services that match the account name — but those require direct integration with banks and are not available through a public validation tool.

How to Check an IBAN at ibanchecker.cash

The ibanchecker.cash validator is free, requires no registration, and processes any IBAN instantly:

  1. Go to ibanchecker.cash.
  2. Paste or type the IBAN into the input field. Spaces are handled automatically.
  3. Click Validate or press Enter.
  4. Results appear instantly: country, bank name, BIC, IBAN length, check digit result, and BBAN breakdown.

The tool accepts IBANs in any format — with or without spaces, upper or lower case.

How the MOD-97 Algorithm Works

The MOD-97 check is the mathematical heart of IBAN validation. Here is the process in plain terms:

  1. Move the first four characters (country code + check digits) to the end of the IBAN.
  2. Replace each letter with its numeric equivalent: A = 10, B = 11, … Z = 35.
  3. Treat the entire string as a very large integer and compute its remainder when divided by 97.
  4. A valid IBAN always produces a remainder of 1.

The check digits were calculated when the IBAN was issued so that this remainder equals 1. Any single-character change elsewhere in the IBAN will almost certainly produce a remainder other than 1, causing the check to fail.

Bulk IBAN Checking for Businesses

If you need to validate multiple IBANs — for example, before a payroll run, before importing a supplier list, or when onboarding new customers — use the Bulk IBAN Checker. It accepts up to hundreds of IBANs at once (paste a list or upload a CSV) and returns a results table showing which IBANs are valid, which have errors, and what the errors are. You can export the results as CSV for use in your accounting or ERP system.

IBAN Validation via API

For developers building payment flows, invoice processing systems, or customer onboarding pipelines, the ibanchecker.cash REST API provides programmatic validation:

POST https://ibanchecker.cash/api/v1/validate
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{ "iban": "DE89370400440532013000" }

The API returns validity status, bank name, BIC, country, and BBAN breakdown in a single JSON response. A free API key allows 1,000 validations per month — suitable for most small applications. See the API documentation for full details, request/response schemas, and rate limits.

Which Free IBAN Check Tools Are Reliable?

Any IBAN validator that implements the full MOD-97 algorithm and checks country-specific length rules will catch the same set of formatting errors. The key differentiators between tools are:

  • Whether the tool also returns bank name and BIC (ibanchecker.cash does)
  • Whether bulk validation is supported
  • Whether an API is available for automation
  • Whether the tool logs or stores the IBANs you enter (ibanchecker.cash does not — no IBAN data is ever stored)

Last updated: June 2026

Validate an IBAN instantly

Free IBAN checker — MOD-97 verification, bank lookup, and SEPA status across 84 countries.

Open IBAN Checker →

Related Articles