The NIN (National Identification Number) is Nigeria’s unique 11-digit identity number issued by the National Identity Management Commission (NIMC). This tool checks whether a NIN has a valid structural format — entirely in your browser, with no network requests.
How it works
The NIMC-issued NIN is randomly assigned and does not encode date of birth, state of origin or gender, and NIMC publishes no public check-digit algorithm. That means the only rule that can be verified offline is the format. The validator:
- Strips out any non-digit characters.
- Requires exactly 11 numeric digits — anything else fails with the actual digit count.
- Rejects all-identical strings such as
00000000000, which are placeholder patterns NIMC does not issue.
If all three checks pass, the NIN is reported as a valid 11-digit format.
Example
| Input | Result |
|---|---|
12345678901 | Valid format (11 numeric digits) |
1234567890 | Invalid — only 10 digits |
00000000000 | Invalid — all-identical digits |
A valid result confirms the format only; it cannot confirm the NIN is issued or belongs to anyone.
Privacy-first: everything runs in your browser with no network requests. This tool checks the format only — it cannot confirm a NIN against the NIMC database.