curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/book \
--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": {
"books": [
{
"method": "profile",
"value": "Pride and Prejudice",
"title": "Pride and Prejudice",
"author": "Jane Austen",
"genre": "Classic",
"series": "Penguin Classics",
"publisher": "Penguin Books",
"format": "Hardcover"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic book fixtures for testing catalogs, publishing workflows, content systems, forms, and sample datasets. Supported methods: profile, author, format, genre, publisher, series, and title.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/book \
--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": {
"books": [
{
"method": "profile",
"value": "Pride and Prejudice",
"title": "Pride and Prejudice",
"author": "Jane Austen",
"genre": "Classic",
"series": "Penguin Classics",
"publisher": "Penguin Books",
"format": "Hardcover"
}
],
"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 book 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"
Book generation method. Defaults to profile.
profile, author, format, genre, publisher, series, title "profile"
Successfully generated book data
success Hide child attributes
Hide child attributes
Resolved book generation method.
profile, author, format, genre, publisher, series, title "profile"
Primary generated book fixture value.
"Pride and Prejudice"
Generated author name.
"Jane Austen"
Generated book format.
"Hardcover"
Generated book genre.
"Classic"
Generated publisher name.
"Penguin Books"
Generated book series.
"Penguin Classics"
Generated book title.
"Pride and Prejudice"
profile, author, format, genre, publisher, series, title Was this page helpful?