curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/music \
--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": {
"music": [
{
"method": "profile",
"value": "Midnight City",
"album": "Electric Dreams",
"artist": "The Example Band",
"genre": "Synthwave",
"songName": "Midnight City"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic music fixtures for testing media catalogs, demo records, import fixtures, playlists, recommendation samples, and UI previews. Supported methods include profile, album, artist, genre, and songName.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/music \
--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": {
"music": [
{
"method": "profile",
"value": "Midnight City",
"album": "Electric Dreams",
"artist": "The Example Band",
"genre": "Synthwave",
"songName": "Midnight City"
}
],
"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 music 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"
Music generation method. Defaults to profile.
profile, album, artist, genre, songName "profile"
Successfully generated music data
success Hide child attributes
Hide child attributes
Resolved music generation method.
profile, album, artist, genre, songName "profile"
Primary generated music fixture value.
"Midnight City"
Generated album name.
"Electric Dreams"
Generated artist name.
"The Example Band"
Generated music genre.
"Synthwave"
Generated song name.
"Midnight City"
profile, album, artist, genre, songName Was this page helpful?