Generate music with the Suno Music API
Suno Music runs on Crazyrouter as an asynchronous task: submit a prompt or lyrics, poll for the audio, pay per generation.
What is Suno Music?
Suno Music is a Suno music generation model from Suno. Crazyrouter exposes it through a task API alongside chat, image and video models under one key and balance.
Describe a song or supply full lyrics and a style.
One flat charge per submitted generation.
Submit and poll; suitable for background jobs.
Same key as every other model on Crazyrouter.
Suno Music API quickstart
POST to https://crazyrouter.com/suno/submit/music, then poll https://crazyrouter.com/suno/fetch with the task id.
curl https://crazyrouter.com/suno/submit/music \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $CRAZYROUTER_API_KEY" \
-d '{
"prompt": "An upbeat indie pop song about shipping on Friday",
"make_instrumental": false,
"wait_audio": false
}'Best use cases
Works with developer tools
HTTP clients
Plain REST submit/poll.
n8n / Dify workflows
HTTP nodes with a polling loop.
Custom backends
Queue the task id and poll.
Crazyrouter console
Track tasks and spend.
Suno Music FAQ
Which endpoint do I call?
https://crazyrouter.com/suno/submit/music to submit, https://crazyrouter.com/suno/fetch to poll.
How is it billed?
Per generation at the rate on this page.
Can I provide my own lyrics?
Yes; use custom mode with lyrics, style and title fields.
How long does generation take?
Typically one to a few minutes; poll until the task reports success.
Can I use the output commercially?
Rights follow the upstream provider's terms; review them before commercial use.