Skip to Content
DocumentationModelsMusicSunostems-all

Suno: stems-all

Split a track into all available stem categories.

Action facts

PropertyValue
Modelsuno
Actionstems-all
EndpointPOST /api/v1/generation/create
Resultaudio in files
PricingView current pricing 

Minimal request

curl -X POST https://api.api-stock.com/api/v1/generation/create \ -H "Authorization: Bearer $API_STOCK_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "suno", "input": { "action": "stems-all", "audioId": "upstream-audio-id" } }'
{ "code": 200, "data": { "taskId": "019ca881-9503-7270-a560-f00fc2b15785", "status": "not_started", "createdAt": "2026-08-22T12:00:00.000Z" } }

Parameters

ParameterTypeRequiredDefaultDescription
action“music” | “extend” | “cover” | “add-instrumental” | “add-vocals” | “sound” | “stems” | “stems-all” | “wav” | “lyrics” | “voice” | “timestamped-lyrics” | “boost-style” | “music-cover” | “replace-section” | “music-video” | “inspo” | “upload” | “remaster” | “add-stem” | “vox” | “remove-section” | “crop” | “fade-in” | “fade-out” | “adjust-speed” | “concat” | “mashup” | “sample” | “midi” | “bpm”Yes"music"Suno operation
titlestringNoTitle for the result
sourceTaskIdstringNoReference to one of your prior Suno generations (its taskId), used by stateful actions such as extend, music-cover, replace-section, timestamped-lyrics, music-video, voice and wav.
audioIdstringYesThe track to operate on, identified by its id (as returned in a prior generation’s output.tracks[].audioId). A generation usually produces 2 tracks; omit to use the first.
stemTypestringNostems: which stem to extract (e.g. lead_vocal, backing_vocals, drum_kit, bass, piano, electric_guitar). Defaults to lead_vocal.

Conditional rules: Requires audioId, or a compatible sourceTaskId path.

Only send fields relevant to this action. When a request references sourceTaskId, the source must be a successful Suno task owned by the same account.

Result

curl https://api.api-stock.com/api/v1/task/status/$TASK_ID \ -H "Authorization: Bearer $API_STOCK_KEY"

You can instead provide a top-level webhook. The task reaches finished, failed or expired; failed generations are refunded automatically. Data actions return output, while media actions return files.

{ "code": 200, "data": { "taskId": "019ca881-9503-7270-a560-f00fc2b15785", "status": "finished", "files": [ { "fileUrl": "https://storage.api-stock.com/result.mp3", "fileType": "music" } ], "createdTime": "2026-08-22T12:00:00.000Z" } }

Back to all Suno actions