Skip to main content

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.

A synthetic word data generator creates sample words, parts of speech and word lists for QA, taxonomy, search, NLP and content-editing tests. It can return adjectives, adverbs, conjunctions, interjections, nouns, prepositions, sampled words, verbs, joined words or expanded profile records.
Generate sample word data at spotzee.com/tools/word-generator.

Why this matters

Word fixtures seem small until they sit inside search boxes, tag pickers, content editors, taxonomy imports and parser code. A single hard-coded noun will not test wrapping, sorting, stemming, filtering or validation paths well enough. Synthetic word data gives you controlled variation. And a numeric seed lets you reproduce the same records after a failure without pinning hand-written fixture files forever. Generated words are test data only. They are not approved product labels, legal text or customer vocabulary. Each Extended API call deducts a small per-call amount from your Spotzee credit balance. See the Spotzee pricing page for live per-tool pricing.

How it works

1

Send the request

POST to /generic/data/generate/word with count. The count is a string from 1 to 100.
2

Choose a method

Use method=profile for expanded word records, or choose one field method: adjective, adverb, conjunction, interjection, noun, preposition, sample, verb or words.
3

Set length controls

Send length, lengthMin, lengthMax and strategy only when the method returns a single-word value or an expanded profile record.
4

Set word-list controls

Send wordCount, wordCountMin and wordCountMax when method=words or method=profile should return a specific number of words.
5

Read the response

The response returns data.words[], generated, locale, optional seed, and the resolved method.

Method reference

MethodOutputMain parameters
profileExpanded word recordcount, locale, seed, length controls, strategy, word-count controls
adjectiveOne adjectivecount, locale, seed, length controls, strategy
adverbOne adverbcount, locale, seed, length controls, strategy
conjunctionOne conjunctioncount, locale, seed, length controls, strategy
interjectionOne interjectioncount, locale, seed, length controls, strategy
nounOne nouncount, locale, seed, length controls, strategy
prepositionOne prepositioncount, locale, seed, length controls, strategy
sampleOne sampled wordcount, locale, seed, length controls, strategy
verbOne verbcount, locale, seed, length controls, strategy
wordsSpace-separated wordscount, locale, seed, word-count controls
Use profile when you need multiple word fields together. Use a field method when your form, parser or import job only expects one word shape.

What to watch for

  • Count outside 1 to 100. One request generates up to 100 word records. For more rows, call the endpoint again and vary the seed when you need a different batch.
  • Exact value mixed with range. Use either an exact length or a minimum/maximum length range. Do not send both.
  • Unpaired range controls. Minimum and maximum controls must be provided together.
  • Length on word-list output. Length controls work with single-word methods and profile, not words.
  • Word count on single-word output. Word-count controls work with words and profile, not noun, verb, adjective or sampled-word methods.
  • Seed not repeating. Keep the same count, locale, method and option values when the same output must repeat.

FAQs

A word generator creates sample word values for tests, prototypes and content tools. Spotzee can return adjectives, adverbs, conjunctions, interjections, nouns, prepositions, sampled words, verbs, word lists or expanded profile records.
Yes. Choose method=noun for noun generator output or method=verb for verb generator output. You can also generate adjectives, adverbs, conjunctions, interjections and prepositions.
Yes. Choose method=words and set an optional exact word count or minimum/maximum word-count range. The response returns a space-separated word list in the words field and primary value field.
Yes. Set a numeric seed to reproduce output for the same count, locale, method and option values. Leave the seed blank when you want a fresh random batch for exploratory QA.
A useful word generator for test data gives you method controls, length controls, repeatable seeds and output that stays separate from production copy. That matters for search, taxonomy, parser and content-editor tests.
Read the word generator guide for endpoint options, response fields and integration patterns. The guide also shows where word fixture data fits beside lorem ipsum, developer fixture, book and git generators.

Try it

Generate sample word data in the browser at spotzee.com/tools/word-generator, or call the Extended API when you need word fixtures inside automated tests, search checks and seed scripts.