DELETE
/
api
/
v1
/
projects
/
{projectId}
curl -X DELETE \
  https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "deleted": true
}
This endpoint allows you to delete a project. The project will be marked as deleted and will no longer be accessible through the API.

Path Parameters

projectId
string
required
The unique identifier of the project to delete.

Response

deleted
boolean
Indicates whether the project was successfully deleted. Always true on success.
curl -X DELETE \
  https://studio.dubformer.ai/api/v1/projects/proj_5f83a14b2ec1b \
  -H 'Authorization: Bearer YOUR_API_KEY'
{
  "deleted": true
}

Notes

  • Once a project is deleted, it cannot be recovered
  • Deleted projects will not appear in the list of projects
  • All associated data (videos, translations, etc.) will be marked as deleted
  • The project ID will remain valid for reference purposes but the project will be inaccessible