๐ EAN
Countries: Coupons
๐ IBAN
Country: ๐ง๐ฌ Bulgaria
๐ ISBN
Countries: ๐จ๐ฐ Cook Islands, ๐ซ๐ฏ Fiji, ๐ฐ๐ฎ Kiribati, ๐ณ๐ท Nauru, ๐ณ๐บ Niue, ๐ธ๐ง Solomon Islands, ๐น๐ฐ Tokelau, ๐น๐ด Tonga, ๐น๐ป Tuvalu, ๐ป๐บ Vanuatu, ๐ผ๐ธ Samoa
๐ Password
๐ฉ๐ช Steuer-IdNr.
๐ฉ๐ช Steuernummer
Regions: Nordrhein-Westfalen
๐ฉ๐ช RVNR
Area: Deutsche Rentenversicherung Bayern Sรผd (Niederbayern-Oberpfalz)
Date of birth: 1968-09-01
Surname: O
Gender: Female, Diverse
๐ต๐ฑ Dowรณd osobisty
๐ต๐ฑ NIP
๐ต๐ฑ PESEL
Date of birth: 1907-10-08
Age: 117
Gender: Female
๐ต๐ฑ REGON
๐ณ๐ฑ BSN
๐ฌ๐ง UTR
๐ฌ๐ง NINO
๐ช๐ธ NIF / DNI / NIE / CIF
Type: Cรณdigo de identificaciรณn fiscal
๐ฎ๐น Codice fiscale
Surname: DBC
First name: WSE
Date of birth: 2023-11-24
Age: 1
Gender: Male
Place of birth: D407
๐บ๐ธ SSN
Regions: New York
๐บ๐ธ ITIN
๐ซ๐ท INSEE
Gender: Female
Date of birth: '92-05
Place of birth: 39315 (domestic)
๐ฑ๐ป Personas kods
API Access
GET/api
Returns a list of available generators per country, and a list of available parameters.
GET/api/:country/:generator?param=value
Generates a string.
GET/api/:country/:generator/:number
Validates a string.
GET/api/barcode/ean13/:number.svg
Generate an SVG with a barcode
Use as a library
yarn add avris-generator
const gm = require('avris-generator');
const pesel = gm.generate('PL', 'pesel', {gender: 'm'});
try {
const data = gm.validate('PL', 'pesel', '12345678900');
// valid
} catch (e) {
// invalid
alert(e.message);
}