Skip to main content

Finance

pin

schemas.finance.pin().getValue() // '5067'
schemas.finance.pin().getValue({ length: 6 }) // '213789'
ArgumentDescription
lengthThe length of the PIN to generate. Defaults to 4

bitcoinAddress

schemas.finance.bitcoinAddress().getValue() // '3ySdvCkTLVy7gKD4j6JfSaf5d'

creditCard

schemas.finance.creditCard().getValue() // '6375-3265-4676-6646'

ethereumAddress

schemas.finance.ethereumAddress() // '0xf03dfeecbafc5147241cc4c4ca20b3c9dfd04c4a'

accountType

schemas.finance.accountType().getValue() // "Credit Card"

bic

schemas.finance.bic().getValue() // 'WYAUPGX1'

routingNumber

schemas.finance.routingNumber().getValue() // '522814402'

creditCardCVV

schemas.finance.creditCardCVV().getValue() // '506'

moneySymbol

schemas.finance.moneySymbol().getValue() // '$'

amount

schemas.finance.amount().getValue() // '$6170.87'
schemas.finance.amount().getValue({ min: 0, max: 1000 }) // '$5.53'
schemas.finance
.amount()
.getValue({ min: 0, max: 1000, symbol: '€', precision: 0 }) // '€5'
ArgumentDescription
minThe lower bound for the amount
maxThe upper bound for the amount
precisionThe number of decimal places for the amount
symbolThe symbol used to prefix the amount. Defaults to '$'

currencyMoneyName

schemas.finance.currencyMoneyName().getValue() // 'Us Dollar'

moneyCode

schemas.finance.moneyCode().getValue() // 'EUR'