curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/commerce \
--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 priceMin=1 \
--data priceMax=1000 \
--data priceDecimalPlaces=2 \
--data 'priceSymbol=$' \
--data isbnVariant=13 \
--data isbnSeparator=-{
"status": "success",
"data": {
"commerce": [
{
"method": "profile",
"value": "Handcrafted Steel Chair",
"productName": "Handcrafted Steel Chair",
"product": "Chair",
"productAdjective": "Handcrafted",
"productMaterial": "Steel",
"productDescription": "A durable chair designed for everyday testing scenarios.",
"department": "Home",
"price": "$154.55",
"priceMin": 100,
"priceMax": 200,
"priceDecimalPlaces": 2,
"priceSymbol": "$",
"isbn": "978-1-60808-867-6",
"isbnVariant": 13,
"isbnSeparator": "-"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic product names, product details, departments, prices, and ISBN fixtures for testing catalog, checkout, search, and merchandising workflows. Supported methods: profile, department, isbn, price, product, productAdjective, productDescription, productMaterial, and productName.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/commerce \
--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 priceMin=1 \
--data priceMax=1000 \
--data priceDecimalPlaces=2 \
--data 'priceSymbol=$' \
--data isbnVariant=13 \
--data isbnSeparator=-{
"status": "success",
"data": {
"commerce": [
{
"method": "profile",
"value": "Handcrafted Steel Chair",
"productName": "Handcrafted Steel Chair",
"product": "Chair",
"productAdjective": "Handcrafted",
"productMaterial": "Steel",
"productDescription": "A durable chair designed for everyday testing scenarios.",
"department": "Home",
"price": "$154.55",
"priceMin": 100,
"priceMax": 200,
"priceDecimalPlaces": 2,
"priceSymbol": "$",
"isbn": "978-1-60808-867-6",
"isbnVariant": 13,
"isbnSeparator": "-"
}
],
"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 commerce 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"
Commerce generation method. Defaults to profile.
profile, department, isbn, price, product, productAdjective, productDescription, productMaterial, productName "profile"
Minimum generated price when method=price or profile. Defaults to 1.
^-?(?:\d+|\d*\.\d+)$"1"
Maximum generated price when method=price or profile. Defaults to 1000.
^-?(?:\d+|\d*\.\d+)$"1000"
Number of decimal places for generated prices when method=price or profile. Defaults to 2.
^\d+$"2"
Optional currency symbol or prefix for generated prices. Maximum 8 characters.
8"$"
ISBN variant when method=isbn or profile. Defaults to 13.
10, 13 "13"
Separator for generated ISBN values. Maximum 3 printable ASCII characters.
3"-"
Successfully generated commerce data
success Hide child attributes
Hide child attributes
Resolved commerce generation method.
profile, department, isbn, price, product, productAdjective, productDescription, productMaterial, productName "profile"
Primary generated commerce value.
"Handcrafted Steel Chair"
Generated shop department or product category.
"Home"
Generated ISBN fixture.
"978-1-60808-867-6"
Resolved ISBN variant.
10 13
Resolved ISBN separator.
"-"
Generated price fixture.
"$154.55"
Resolved minimum price.
100
Resolved maximum price.
200
Resolved price decimal places.
2
Resolved price symbol.
"$"
Generated short product name.
"Chair"
Generated product adjective.
"Handcrafted"
Generated product description.
"A durable chair designed for everyday testing scenarios."
Generated product material.
"Steel"
Generated descriptive product name.
"Handcrafted Steel Chair"
profile, department, isbn, price, product, productAdjective, productDescription, productMaterial, productName Was this page helpful?