CLABE Validator
<img src=https://centerkey.com/graphics/center-key-logo.svg align=right width=200 alt=logo>
JavaScript library to analyze or create a CLABE number for a Mexican bank account
CLABE (Clave Bancaria Estandarizada — Spanish for "standardized banking code") is a banking
standard from the Mexican Bank Association (Asociación de Bancos de México — ABM) for
uniform numbering of bank accounts. CLABE numbers are 18 digits long.
See: https://en.wikipedia.org/wiki/CLABE
A) Online Form
Try it out:
https://centerkey.com/clabe
B) Setup
Web browser
Include in a web page:
<script src=clabe.min.js></script>
or from the jsdelivr.com CDN:
<script src=https://cdn.jsdelivr.net/npm/clabe-validator@2.1/dist/clabe.min.js></script>
Node.js server
Install package for node:
$ npm install clabe-validator
Import package:
import { clabe } from 'clabe-validator';
C) Validator Usage
Pass the CLABE number as an 18-character string into clabe.validate(clabeNum)
.
1. Example JavaScript code
const clabeNum = '002010077777777771';
const clabeCheck = clabe.validate(clabeNum);
console.log(clabeCheck.ok ? '¡Que bueno!' : '¡Muy mal!');
console.log('Your bank: ' + clabeCheck.bank);
2. Example JSON result for a valid CLABE number
{
ok: true,
formatOk: true,
error: null,
message: 'Valid',
clabe: '002010077777777771',
tag: 'BANAMEX',
bank: 'Banco Nacional de México',
city: 'Aguascalientes MX-AGU',
multiple: false,
total: 1,
account: '07777777777',
code: { bank: '002', city: '010' },
checksum: 1,
}
3. Example JSON result for an invalid CLABE number
{
ok: false,
formatOk: true,
error: 'invalid-city',
message: 'Invalid city code: 000',
}
The formatOk
field indicates if the CLABE's length and checksum are both valid (even if the bank
code or city code are unknown).
4. Possible errors
Error code | Error message | Format Ok |
---|
invalid-length | Must be exactly 18 digits long | false |
invalid-characters | Must be only numeric digits (no letters) | false |
invalid-checksum | Invalid checksum, last digit should be: [DIGIT] | false |
invalid-bank | Invalid bank code: [CODE] | true |
invalid-city | Invalid city code: [CODE] | true |
D) Calculator Usage
Pass the bank code, city code, and account number into
clabe.calculate(bankCode, cityCode, accountNumber)
and get the 18-character CLABE number back.
const clabeNum = clabe.calculate(2, 10, 7777777777);
console.log(clabeNum === '002010077777777771');
E) TypeScript Declarations
See the TypeScript declarations at the top of the clabe.ts file.
The clabe.validate(clabeNum: string)
function returns a ClabeCheck
object:
type ClabeCheck = {
ok: boolean,
formatOk: boolean,
error: string | null,
message: string,
clabe: string | null,
tag: string | null,
bank: string | null,
city: string | null,
multiple: boolean,
total: number,
account: string,
code: { bank: string, city: string },
checksum: number | null,
};
Example TypeScript usage with explicit types:
import { clabe, ClabeCheck } from 'clabe-validator';
const clabeNum: string = '002010077777777771';
const clabeCheck: ClabeCheck = clabe.validate(clabeNum);
const bankCode: string = clabeCheck.code.bank;
F) Contributor Notes
To be a contributor, fork the project and run the commands npm install
and npm test
on your local clone.
Make your edits and rerun the tests.
Pull requests welcome.
Since the pacakge version number is updated during the release process, leave the version number unchanged.
G) Genesis
The origin of this project goes back to when I needed to send money to Guanajuato, Mexico to pay
nurses who were providing medical care of a relative.
I was initially unable to transfer funds because the money transfer service reported that the CLABE
number I supplied was invalid.
Through a little sleuthing and a lot of luck, I discovered that a financial services company had
accidentally omitted the very last modulo operation in their CLABE checksum calculation.
The result was that valid Mexican bank account numbers with certain combinations of digits were
erroneously rejected.
This project was created to fix the checksum bug.
It is an open source community project and is not supported by any company.
H) Build Environment
Check out the runScriptsConfig
section in package.json for an
interesting approach to organizing build tasks.
CLI Build Tools for package.json
- 🎋 add-dist-header: Prepend a one-line banner comment (with license notice) to distribution files
- 📄 copy-file-util: Copy or rename a file with optional package version number
- 📂 copy-folder-util: Recursively copy files from one folder to another folder
- 🪺 recursive-exec: Run a command on each file in a folder and its subfolders
- 🔍 replacer-util: Find and replace strings or template outputs in text files
- 🔢 rev-web-assets: Revision web asset filenames with cache busting content hash fingerprints
- 🚆 run-scripts-util: Organize npm scripts into named groups of easy to manage commands
- 🚦 w3c-html-validator: Check the markup validity of HTML files using the W3C validator
Feel free to submit questions at:
github.com/center-key/clabe-validator/issues
CLABE Validator code is open source under the MIT License,
and the documentation is published under the
CC BY-SA 4.0 license.