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

# Delete Material Asset

> Deletes a Seedance material asset owned by the current organization.

Delete one material asset. This does not delete the containing material group. After deletion, the asset ID can no longer be used as `material_asset_id`.

## Example Request

```bash theme={null}
curl https://api.aisonar.dev/v1/videos/assets/asset-20260720123456-qn7wr \
  -X DELETE \
  -H "Authorization: Bearer $API_KEY"
```

## Example Response

```json theme={null}
{
  "deleted": true,
  "id": "asset-20260720123456-qn7wr"
}
```
