Synthetic QA data · NO

Norway test IBAN numbers

Ten checksum-valid Norway test IBANs with their domestic bank code and account number, ready for a payment form, fixture or unit test, plus invalid NO cases that a correct validator must reject.

Synthetic only: the bank code may belong to a real Norway bank, but each account number is random. Never use these values for payments or to represent a real account.

15characters
NOcountry code
11BBAN characters
YesSEPA country

Valid Norway test IBANs

IBANBank codeAccount numberBank (public registry)
NO49 2890 4392 547 2890 439254 VALLE SPAREBANK, Valle
NO90 4360 3451 806 4360 345180 SPAREBANK 1 SMN, Oslo
NO54 9012 9033 362 9012 903336 SPAREBANK 1 OSTLANDET (FORMERLY SPAREBANKEN HEDMARK), Hamar
NO13 4260 0068 314 4260 006831 ORKLA SPAREBANK, Orkanger
NO21 1871 2582 681 1871 258268 ODAL SPAREBANK, Sagstua
NO72 2881 7894 226 2881 789422 BIRKENES SPAREBANK, Birkeland
NO41 3994 1699 778 3994 169977 SPAREBANK 1 SMN, Oslo
NO04 4609 2828 859 4609 282885 GILDESKAL SPAREBANK, Inndyr
NO16 3800 9600 296 3800 960029 IDRE SOGN SPAREBANK, Ardalstangen
NO38 8317 2713 958 8317 271395 KLP BANKEN AS, Trondheim

Invalid NO IBANs for negative tests

Each value is derived from the first valid IBAN above and re-checked, so the expected result is exact.

CaseInputExpected validator result
Wrong check digits NO5028904392547 Reject: MOD-97 checksum fails
Transposed BBAN digits NO4982904392547 Reject: MOD-97 checksum fails
One character too short NO492890439254 Reject: length does not match the country format
Wrong country prefix FR4928904392547 Reject: length or checksum fails for the other country
Lowercase with spaces no49 2890 4392 547 Accept after normalizing case and whitespace

Norway IBAN format

NO + 2 check digits + 4 digits + 6 digits + 1 digit = 15 characters. Validate the length and character classes first, then the MOD-97 checksum: move the first four characters to the end, convert letters to numbers (A=10 … Z=35) and the remainder modulo 97 must be 1.

Need rows for the same bank, city or BIC your integration talks to? The generator can target them, keep a stable seed and export 1,000 rows at a time.

curl -X POST https://ibangen.com/api/v1/generate \
  -H "X-API-Key: $IBANGEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country": "Norway", "quantity": 100}'

Test against real bank structures, not just checksums

Free: 10 NO rows at a time. Pro adds bank targeting, 1,000-row batches, CSV/JSON exports and the API; Business adds exact BIC and branch targeting.

Questions

Are these Norway test IBANs real bank accounts?

No. They are synthetic NO IBANs with a correct national format and MOD-97 checksum. The bank code can match a real institution, but the account number is random and must never be used for payments.

How long is a Norway IBAN?

A Norway IBAN has 15 characters: the country code NO, two check digits and a 11-character BBAN (4 digits, 6 digits, 1 digit).

Can I get more Norway test IBANs for a specific bank or city?

Yes. The Norway generator creates up to 10 rows free. Paid plans add bank, city and exact BIC targeting, 1,000-row batches, CSV/JSON exports and the same data through the API.

Test IBANs for other countries

IBANgen provides synthetic QA data. It does not verify account ownership, balances, reachability or payment execution.