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

# Delete Song

> Move a song to trash (soft delete)

Move a song to trash. The song is not permanently deleted but hidden from listings.

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

### Path Parameters

<ParamField path="id" type="string" required>
  Song UUID
</ParamField>

## Response

<ResponseField name="success" type="boolean">
  True on success
</ResponseField>

<ResponseField name="message" type="string">
  "Song moved to trash"
</ResponseField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.60db.ai/songs/song-550e8400 \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  await client.music.delete('song-550e8400');
  ```

  ```python Python theme={null}
  client.music.delete('song-550e8400')
  ```
</RequestExample>
