Finance Data
Generate financial data for testing payment systems and banking applications.
Bank Identifiers
bic
Generates a BIC (Bank Identifier Code), randomly 8 or 11 characters:
{"fake": ["bic"]}
{"fake": ["bic", 8]} // Force 8 characters
{"fake": ["bic", 11]} // Force 11 characters
bic8
Generates an 8-character BIC:
{"fake": ["bic8"]}
bic11
Generates an 11-character BIC (with branch code):
{"fake": ["bic11"]}
iban
Generates an IBAN with optional country code:
{"fake": ["iban"]}
{"fake": ["iban", "DE"]} // German IBAN
{"fake": ["iban", "FR"]} // French IBAN
lei
Generates a Legal Entity Identifier:
{"fake": ["lei"]}
Credit Cards
credit_card_number
Generates a credit card number:
{"fake": ["credit_card_number"]}
Currency
currency_code
Generates a currency code (USD, EUR, etc.):
{"fake": ["currency_code"]}
currency_name
Generates a currency name:
{"fake": ["currency_name"]}
currency_symbol
Generates a currency symbol:
{"fake": ["currency_symbol"]}
Alphanumeric
alphanumeric
Generates an alphanumeric string (useful for reference numbers):
{"fake": ["alphanumeric", length]}
{"fake": ["alphanumeric", min_length, max_length]}