curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile{
"status": "success",
"data": {
"companies": [
{
"method": "profile",
"value": "Acme Labs",
"name": "Acme Labs",
"catchPhrase": "Adaptive logistical framework",
"buzzPhrase": "streamline scalable platforms",
"catchPhraseAdjective": "Adaptive",
"catchPhraseDescriptor": "logistical",
"catchPhraseNoun": "framework",
"buzzAdjective": "scalable",
"buzzVerb": "streamline",
"buzzNoun": "platforms"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic company names, catch phrases, buzz phrases, and business vocabulary fixture data for testing CRM, enrichment, search, and onboarding workflows. Supported methods: profile, name, catchPhrase, buzzPhrase, catchPhraseAdjective, catchPhraseDescriptor, catchPhraseNoun, buzzAdjective, buzzVerb, and buzzNoun.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile{
"status": "success",
"data": {
"companies": [
{
"method": "profile",
"value": "Acme Labs",
"name": "Acme Labs",
"catchPhrase": "Adaptive logistical framework",
"buzzPhrase": "streamline scalable platforms",
"catchPhraseAdjective": "Adaptive",
"catchPhraseDescriptor": "logistical",
"catchPhraseNoun": "framework",
"buzzAdjective": "scalable",
"buzzVerb": "streamline",
"buzzNoun": "platforms"
}
],
"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 company 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"
Company generation method. Defaults to profile.
profile, name, catchPhrase, buzzPhrase, catchPhraseAdjective, catchPhraseDescriptor, catchPhraseNoun, buzzAdjective, buzzVerb, buzzNoun "profile"
Successfully generated company data
success Hide child attributes
Hide child attributes
Resolved company generation method.
profile, name, catchPhrase, buzzPhrase, catchPhraseAdjective, catchPhraseDescriptor, catchPhraseNoun, buzzAdjective, buzzVerb, buzzNoun "profile"
Primary generated company value.
"Acme Labs"
Generated company name.
"Acme Labs"
Generated company catch phrase.
"Adaptive logistical framework"
Generated company buzz phrase.
"streamline scalable platforms"
profile, name, catchPhrase, buzzPhrase, catchPhraseAdjective, catchPhraseDescriptor, catchPhraseNoun, buzzAdjective, buzzVerb, buzzNoun Was this page helpful?