curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/word \
--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 length=5 \
--data lengthMin=5 \
--data lengthMax=7 \
--data strategy=any-length \
--data wordCount=5 \
--data wordCountMin=5 \
--data wordCountMax=10{
"status": "success",
"data": {
"words": [
{
"method": "profile",
"value": "incidentally",
"adjective": "pungent",
"adverb": "quarrelsomely",
"conjunction": "since",
"interjection": "gah",
"noun": "external",
"preposition": "without",
"sample": "incidentally",
"verb": "act",
"words": "before hourly patiently dribble equal",
"length": 5,
"strategy": "any-length",
"wordCount": 5
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic word fixtures for testing search, tagging, NLP, taxonomy, content-editing, and sample-data workflows. Supported methods: profile, adjective, adverb, conjunction, interjection, noun, preposition, sample, verb, and words. Length and word-count controls are capped to keep responses bounded and fast.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/word \
--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 length=5 \
--data lengthMin=5 \
--data lengthMax=7 \
--data strategy=any-length \
--data wordCount=5 \
--data wordCountMin=5 \
--data wordCountMax=10{
"status": "success",
"data": {
"words": [
{
"method": "profile",
"value": "incidentally",
"adjective": "pungent",
"adverb": "quarrelsomely",
"conjunction": "since",
"interjection": "gah",
"noun": "external",
"preposition": "without",
"sample": "incidentally",
"verb": "act",
"words": "before hourly patiently dribble equal",
"length": 5,
"strategy": "any-length",
"wordCount": 5
}
],
"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 word 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"
Word generation method. Defaults to profile.
profile, adjective, adverb, conjunction, interjection, noun, preposition, sample, verb, words "profile"
Exact expected word length for single-word methods or profile output. Range: 1-100.
^[1-9]\d*$"5"
Minimum expected word length for single-word methods or profile output. Range: 1-100.
^[1-9]\d*$"5"
Maximum expected word length for single-word methods or profile output. Range: 1-100.
^[1-9]\d*$"7"
Word-length fallback strategy for single-word methods or profile output.
fail, closest, shortest, longest, any-length "any-length"
Exact number of words for words or profile output. Range: 1-50.
^[1-9]\d*$"5"
Minimum number of words for words or profile output. Range: 1-50.
^[1-9]\d*$"5"
Maximum number of words for words or profile output. Range: 1-50.
^[1-9]\d*$"10"
Successfully generated word data
success Hide child attributes
Hide child attributes
Resolved word generation method.
profile, adjective, adverb, conjunction, interjection, noun, preposition, sample, verb, words "profile"
Primary generated word fixture value.
"incidentally"
Generated adjective.
"pungent"
Generated adverb.
"quarrelsomely"
Generated conjunction.
"since"
Generated interjection.
"gah"
Generated noun.
"external"
Generated preposition.
"without"
Generated sampled word.
"incidentally"
Generated verb.
"act"
Generated space-separated words.
"before hourly patiently dribble equal"
Resolved exact expected word length.
5
Resolved minimum expected word length.
5
Resolved maximum expected word length.
7
Resolved word-length fallback strategy.
fail, closest, shortest, longest, any-length "any-length"
Resolved exact word count.
5
Resolved minimum word count.
5
Resolved maximum word count.
10
profile, adjective, adverb, conjunction, interjection, noun, preposition, sample, verb, words Was this page helpful?