Generate synthetic number data
Generates synthetic number fixtures for testing numeric fields, identifiers, parsers, validation flows, base-number strings, BigInt-compatible values, and roman-numeral displays. Supported methods: profile, bigInt, binary, float, hex, int, octal, and romanNumeral. Numeric ranges are capped to keep responses bounded and predictable.
Authorizations
Bearer token authentication. Use format: Bearer YOUR_API_KEY
Body
Number of number 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"
Number generation method. Defaults to profile.
profile, bigInt, binary, float, hex, int, octal, romanNumeral "profile"
Minimum generated number for supported scalar methods.
^-?(?:\d+|\d*\.\d+)$"10"
Maximum generated number for supported scalar methods.
^-?(?:\d+|\d*\.\d+)$"100"
Positive multiple for integer or float output.
^-?(?:\d+|\d*\.\d+)$"5"
Maximum decimal places for float output. Range: 0-10.
^\d+$"2"
Minimum generated BigInt value as an integer string.
^-?\d{1,16}$"1000000"
Maximum generated BigInt value as an integer string.
^-?\d{1,16}$"9999999"
Positive BigInt multiple as an integer string.
^-?\d{1,16}$"7"