Skip to main content
DELETE
/
api
/
v1
/
generations
/
{id}
Delete Generation
curl --request DELETE \
  --url https://veogen.studio/api/v1/generations/{id}

Documentation Index

Fetch the complete documentation index at: https://veogenstudio.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required
The UUID of the generation to delete.

Response 200 OK

{
  "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

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