Skip to main content
PUT
/
v1
/
create.remix_instrumental
create.remix_instrumental
curl --request PUT \
  --url https://api.soundpiece.co/v1/create.remix_instrumental \
  --header 'Content-Type: application/json' \
  --data '
{
  "idempotency_key": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "source": {
    "url": "<string>"
  },
  "callback_url": "<string>",
  "n_variations": 1
}
'
{
  "remix_instrumental": {
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "idempotency_key": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "source": {
      "url": "<string>"
    },
    "n_variations": 2,
    "outputs": [
      {
        "url": "<string>",
        "expires_at": "2023-11-07T05:31:56Z",
        "duration": 123
      }
    ],
    "error": {
      "message": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.soundpiece.co/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
idempotency_key
string<uuid>
required

A unique UUID you choose. Send the same key to retry safely; we'll return the original response without doing the work again.

source
AudioSource · object
required

The audio track to remix.

callback_url
string<uri> | null

Optional HTTPS URL we'll POST the final response to when the operation reaches ready or failed. Polling remains the canonical source of truth; webhooks are a best-effort latency optimisation.

Required string length: 1 - 2048
n_variations
integer
default:1

How many output variations to produce (1-3).

Required range: 1 <= x <= 3

Response

Successful Response

remix_instrumental
RemixInstrumental · object
required