> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lavendly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Set clip native audio

> Configure how a clip's baked-in model audio mixes with attached tracks.

<ParamField path="id" type="string" required>Workflow id.</ParamField>
<ParamField path="clip_id" type="string" required>Clip (videoGenerator) node id.</ParamField>

### Body

<ParamField body="native_audio.mode" type="string" required>
  `off`, `native`, or `mix`.
</ParamField>

<ParamField body="native_audio.volume" type="number" default="1">
  Gain for the native track, `0..2`. Only applied when `mode != 'off'`.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X PATCH https://api.lavendly.ai/v1/workflows/wf_xyz/clips/vid1/audio \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer $LAVENDLY_API_KEY' \
    -d '{ "native_audio": { "mode": "mix", "volume": 0.6 } }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "clip_id": "vid1",
    "native_audio": { "mode": "mix", "volume": 0.6 },
    "updated_at": 1734001234567
  }
  ```
</ResponseExample>
