latestSwagger 2.02026-08-19218237253.7 KB

3af866d68651

Audio

Remix an existing audio sample (a sound effect, ambiance, or music clip) into a variation guided by a text prompt, for example turning a track into an 80s synthwave or metal version. Both the sample and the prompt are required; the sample is uploaded as a URL or base64 audio and must be at most 15MB or the call returns HTTP 400, and duration must be one of the allowed values (0 means match the source, otherwise multiples of 10 up to 180 seconds). Synchronous: the call blocks until generation finishes and returns a single audio result containing a URL; there is no separate polling step. The optional modification_strength (0 to 1, default 0.5) controls how far the result departs from the original. Credits are charged on success. Use this to transform existing audio you already have; use createSoundEffect, createAmbiance, or createMusic to generate audio from scratch. Pass an optional request_id to tag the result so you can locate it later via getAudioResults. Requires an API key (user scope).

post/audio/transform

Request body

samplestring required

URL or base64-encoded source audio sample to remix (15MB max).

promptstring required

Text description guiding the remix (e.g., "make it sound like an 80s synthwave track", "turn this into a metal version").

duration0 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100 | 110 | 120 | 130 | 140 | 150 | 160 | 170 | 180

Duration in seconds. Use 0 for automatic duration matching the source sample.

modification_strengthnumber float

Controls how strongly the source sample is modified. 0 keeps it close to the original, 1 transforms it fully.

augment_promptboolean

Augment the prompt behind the scenes. Disable to have more control.

request_idstring

Optional client-provided identifier for this request. Use this to retrieve results later via the results endpoint.

Example request

{
  "sample": "<url> OR data:audio/mp3;base64,..."
}

Response

Success

urlstring

URL to the generated audio file

typestring
durationnumber float
request_idstring
created_atinteger