Generate bounded helper data
Applies approved bounded helper operations for test fixtures, custom sample sets, weighted selections, object selections, slug and symbol templates, and constrained pattern strings. Callback and template-dispatch helpers are not exposed.
Authorizations
Bearer token authentication. Use format: Bearer YOUR_API_KEY
Body
Approved safe helper method to apply.
arrayElement, arrayElements, weightedArrayElement, shuffle, objectKey, objectValue, objectEntry, enumValue, rangeToNumber, replaceSymbols, replaceCreditCardSymbols, slugify, fromRegExp, uniqueArray "arrayElement"
Number of helper 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"
JSON array of scalar values for arrayElement, arrayElements, shuffle, and uniqueArray. Maximum 100 entries.
"[\"alpha\",\"bravo\",\"charlie\"]"
JSON object with scalar values for objectKey, objectValue, objectEntry, and enumValue. Maximum 100 entries.
"{\"small\":1,\"medium\":2,\"large\":3}"
JSON array of weighted scalar values for weightedArrayElement. Each entry must include positive finite weight and scalar value.
"[{\"weight\":5,\"value\":\"sunny\"},{\"weight\":1,\"value\":\"rainy\"}]"
Text, symbol template, card-pattern template, slug input, or bounded pattern string for text-backed helper methods.
256"Hello world"
Helper output length for arrayElements and uniqueArray. Capped at 100.
^[1-9]\d*$"2"
Minimum count or numeric input for arrayElements and rangeToNumber.
^-?(?:\d+|\d*\.\d+)$"1"
Maximum count for arrayElements or maximum numeric range value for rangeToNumber.
^-?(?:\d+|\d*\.\d+)$"3"
Single replacement symbol for replaceCreditCardSymbols.
256"#"
Whether shuffle should use in-place behavior internally. The request input is never persisted.
true, false "false"