curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/finance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile \
--data accountNumberLength=8 \
--data amountMin=0 \
--data amountMax=1000 \
--data amountDecimalPlaces=2 \
--data 'amountSymbol=$' \
--data amountAutoFormat=false \
--data bicIncludeBranchCode=false \
--data bitcoinAddressType=bech32 \
--data bitcoinNetwork=testnet \
--data creditCardIssuer=visa \
--data ibanFormatted=false \
--data ibanCountryCode=DE \
--data maskedNumberLength=4 \
--data maskedNumberParens=true \
--data maskedNumberEllipsis=true \
--data pinLength=4{
"status": "success",
"data": {
"finance": [
{
"method": "profile",
"value": "Personal Loan Account",
"accountName": "Personal Loan Account",
"accountNumber": "92842238",
"accountNumberLength": 8,
"amount": "$617.87",
"amountMin": 0,
"amountMax": 1000,
"amountDecimalPlaces": 2,
"amountSymbol": "$",
"amountAutoFormat": false,
"currency": {
"code": "USD",
"name": "US Dollar",
"symbol": "$",
"numericCode": "840"
},
"currencyCode": "USD",
"currencyName": "US Dollar",
"currencyNumericCode": "840",
"currencySymbol": "$",
"bic": "WYAUPGX1",
"bicIncludeBranchCode": false,
"iban": "DE84 1022 7075 0900 1170 01",
"ibanFormatted": true,
"ibanCountryCode": "DE",
"routingNumber": "522814402",
"maskedNumber": "(...9711)",
"maskedNumberLength": 4,
"maskedNumberParens": true,
"maskedNumberEllipsis": true,
"transactionDescription": "payment transaction using a masked fixture for USD 617.87",
"transactionType": "payment"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic finance fixtures for testing account, payment, currency, transaction, blockchain-address, and card-validation workflows. Generated values are test fixtures only and are not usable financial credentials. Supported methods: profile, accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencyName, currencyNumericCode, currencySymbol, ethereumAddress, iban, litecoinAddress, maskedNumber, pin, routingNumber, transactionDescription, and transactionType.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/finance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile \
--data accountNumberLength=8 \
--data amountMin=0 \
--data amountMax=1000 \
--data amountDecimalPlaces=2 \
--data 'amountSymbol=$' \
--data amountAutoFormat=false \
--data bicIncludeBranchCode=false \
--data bitcoinAddressType=bech32 \
--data bitcoinNetwork=testnet \
--data creditCardIssuer=visa \
--data ibanFormatted=false \
--data ibanCountryCode=DE \
--data maskedNumberLength=4 \
--data maskedNumberParens=true \
--data maskedNumberEllipsis=true \
--data pinLength=4{
"status": "success",
"data": {
"finance": [
{
"method": "profile",
"value": "Personal Loan Account",
"accountName": "Personal Loan Account",
"accountNumber": "92842238",
"accountNumberLength": 8,
"amount": "$617.87",
"amountMin": 0,
"amountMax": 1000,
"amountDecimalPlaces": 2,
"amountSymbol": "$",
"amountAutoFormat": false,
"currency": {
"code": "USD",
"name": "US Dollar",
"symbol": "$",
"numericCode": "840"
},
"currencyCode": "USD",
"currencyName": "US Dollar",
"currencyNumericCode": "840",
"currencySymbol": "$",
"bic": "WYAUPGX1",
"bicIncludeBranchCode": false,
"iban": "DE84 1022 7075 0900 1170 01",
"ibanFormatted": true,
"ibanCountryCode": "DE",
"routingNumber": "522814402",
"maskedNumber": "(...9711)",
"maskedNumberLength": 4,
"maskedNumberParens": true,
"maskedNumberEllipsis": true,
"transactionDescription": "payment transaction using a masked fixture for USD 617.87",
"transactionType": "payment"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.spotzee.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication. Use format: Bearer YOUR_API_KEY
Number of finance records to generate (1-100). Passed as string but must be numeric.
^[1-9]\d?$|^100$"10"
Locale for generated data (e.g., en, es, fr, de, pt_BR, zh_CN)
"en"
Seed for deterministic generation. Same seed produces same results.
"12345"
Finance generation method. Defaults to profile.
profile, accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencyName, currencyNumericCode, currencySymbol, ethereumAddress, iban, litecoinAddress, maskedNumber, pin, routingNumber, transactionDescription, transactionType "profile"
Generated account-number length. Defaults to 8.
^[1-9]\d*$"8"
Minimum generated amount when method=amount or profile. Defaults to 0.
^-?(?:\d+|\d*\.\d+)$"0"
Maximum generated amount when method=amount or profile. Defaults to 1000.
^-?(?:\d+|\d*\.\d+)$"1000"
Number of decimal places for generated amounts when method=amount or profile. Defaults to 2.
^\d+$"2"
Optional currency symbol or prefix for generated amounts. Maximum 8 characters.
8"$"
Use locale-aware amount formatting when supported.
true, false "false"
Include a branch code on generated BIC values.
true, false "false"
Bitcoin address family when method=bitcoinAddress.
legacy, segwit, bech32, taproot "bech32"
Bitcoin network when method=bitcoinAddress. Defaults to mainnet.
mainnet, testnet "testnet"
Optional card issuer or safe fixture format when method=creditCardNumber. Maximum 64 printable ASCII characters.
64"visa"
Return formatted IBAN output when method=iban or profile.
true, false "false"
Optional two-letter uppercase country code for generated IBAN values.
^[A-Z]{2}$"DE"
Length of the unmasked suffix for generated masked numbers. Defaults to 4.
^[1-9]\d*$"4"
Wrap generated masked numbers in parentheses.
true, false "true"
Prefix generated masked numbers with an ellipsis.
true, false "true"
Generated PIN length. Defaults to 4.
^[1-9]\d*$"4"
Successfully generated finance data
success Hide child attributes
Hide child attributes
Resolved finance generation method.
profile, accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencyName, currencyNumericCode, currencySymbol, ethereumAddress, iban, litecoinAddress, maskedNumber, pin, routingNumber, transactionDescription, transactionType "profile"
Primary generated finance fixture value.
"Personal Loan Account"
Generated account name fixture.
"Personal Loan Account"
Generated account number fixture.
"92842238"
Resolved account-number length.
8
Generated amount fixture.
"$617.87"
Resolved minimum amount.
0
Resolved maximum amount.
1000
Resolved amount decimal places.
2
Resolved amount symbol.
"$"
Resolved amount auto-format flag.
false
Generated BIC/SWIFT fixture.
"WYAUPGX1"
Resolved BIC branch-code flag.
false
Generated Bitcoin address fixture.
"bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4"
Resolved Bitcoin address family.
legacy, segwit, bech32, taproot "bech32"
Resolved Bitcoin network.
mainnet, testnet "testnet"
Generated card verification fixture.
"506"
Generated or requested card issuer fixture.
"visa"
Generated card-number fixture for validation testing.
"4882664999007"
Hide child attributes
Generated currency code.
"USD"
Generated currency name.
"US Dollar"
Generated currency symbol.
"$"
Generated ISO 4217 numeric currency code.
"840"
Generated currency code.
"USD"
Generated currency name.
"US Dollar"
Generated ISO 4217 numeric currency code.
"840"
Generated currency symbol.
"$"
Generated Ethereum address fixture.
"0xf03dfeecbafc5147241cc4c4ca20b3c9dfd04c4a"
Generated IBAN fixture.
"DE84 1022 7075 0900 1170 01"
Resolved IBAN formatting flag.
true
Resolved IBAN country code.
"DE"
Generated Litecoin address fixture.
"MoQaSTGWBRXkWfyxKbNKuPrAWGELzcW"
Generated masked number fixture.
"(...9711)"
Resolved masked-number suffix length.
4
Resolved masked-number parentheses flag.
true
Resolved masked-number ellipsis flag.
true
Generated PIN fixture.
"5067"
Resolved PIN length.
4
Generated routing number fixture.
"522814402"
Generated transaction description fixture.
"payment transaction using card ending with a masked fixture for USD 617.87"
Generated transaction type fixture.
"payment"
profile, accountName, accountNumber, amount, bic, bitcoinAddress, creditCardCVV, creditCardIssuer, creditCardNumber, currency, currencyCode, currencyName, currencyNumericCode, currencySymbol, ethereumAddress, iban, litecoinAddress, maskedNumber, pin, routingNumber, transactionDescription, transactionType Was this page helpful?