A music data generator creates synthetic album, artist, genre and song name values for tests, demos and fixture files. Spotzee returns those fields from one endpoint with optional locale and seed metadata, so the same record can be reproduced across runs.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.
Generate sample music data at
spotzee.com/tools/music-generator.
Why this matters
Music apps, podcast clones, social-radio products and recommendation flows all rely on catalog rows. Tests, demos and screenshots need believable album titles, artist names and song names. They should not embed real licensed catalog rows in fixtures, marketing mocks or seed scripts. Synthetic music data gives engineering and QA teams a controlled lorem-ipsum-alternative for catalog content. A numeric seed reproduces the same record set after a failed test. Method-specific output keeps fixtures focused on the field shape under test. Generated values are placeholder strings. 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
Send the request
POST to
/generic/data/generate/music with count. The count is a string
from 1 to 100.Choose a method
Use
method=profile for the bundled record, or pick one method such as
songName, album, artist or genre.Set repeatability
Send
locale where supported and an optional numeric seed when the same
output needs to repeat in tests.Method reference
| Method | Output | Main parameters |
|---|---|---|
profile | Album, artist, genre and song name | count, locale, seed |
songName | Single song name | count, locale, seed |
album | Single album title | count, locale, seed |
artist | Single artist or band name | count, locale, seed |
genre | Single music genre | count, locale, seed |
profile when a screen needs related catalog fields together. Pick a single method when a parser, tag or column expects one shape per record.
What to watch for
- Count outside
1to100. One request returns up to 100 records. Call the endpoint again for larger datasets. - Method not matching the field under test. Use
profilefor related fields together, or pick one method when a parser expects a single value shape. - Treating fixtures as licensed catalog rows. Generated values are synthetic strings. Replace them before publishing marketing copy, app store listings or production catalog data.
- Locale assumptions. Most vocabulary is English-coded today. Send a non-English locale only after confirming upstream support for the words you need.
- Unseeded snapshots. Send a numeric
seedwhen tests assert exact strings or snapshot the rendered output.
FAQs
What is a music data generator?
What is a music data generator?
A music data generator creates synthetic album, artist, genre and song
name values for tests, examples and seed scripts. Spotzee returns those
fields from one endpoint with optional locale and seed metadata.
Can I get just a song name or album name?
Can I get just a song name or album name?
Yes. Pick
songName for a single song name per record, or album for a
single album title. Choose profile when you need the bundled album,
artist, genre and song name together.Is the music genre generator useful for filter screens?
Is the music genre generator useful for filter screens?
Yes. Pick
genre and the endpoint returns one music genre string per
record. Use a numeric seed when the same music genre generator output
must repeat across runs.Can I reproduce the same music records?
Can I reproduce the same music records?
Yes. Send a numeric
seed and the endpoint returns the same records on
every run. Drop the seed for fresh output each time.Are these real albums, artists or songs?
Are these real albums, artists or songs?
No. Generated values are synthetic placeholder strings built from common
music vocabulary. Treat them as fixture copy and replace them before
shipping documentation, marketing or production catalog data.
Where can I learn more about music data generation?
Where can I learn more about music data generation?
Read the music data generator
guide
for endpoint options, response fields and integration patterns. The guide
also shows where music data fits beside book, word, string and developer
fixture generators.