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

# Delete Generation

> Permanently delete a generation and its associated media files.

## Path Parameters

<ParamField path="id" type="string" required>
  The UUID of the generation to delete.
</ParamField>

***

## Response `200 OK`

```json theme={null}
{
  "message": "Generation deleted successfully."
}
```

***

## Notes

* Deletion is **permanent** — the video/image file is removed from storage.
* You can only delete generations belonging to your account.
* Deleting a generation has **no effect on billing** — charges are not refunded on deletion.

***

## Example

```bash theme={null}
curl -X DELETE \
  https://veogen.studio/api/v1/generations/01928abc-def0-7123-b456-789012345678 \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Accept: application/json"
```
