Skip to main content
DELETE
/
videos
/
{video_id}
Delete video
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.phaseo.app/v1/videos/{video_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.ai-stats.phaseo.app/llms.txt

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

Tombstones a terminal video generation record. In-progress jobs cannot be deleted. Use this after a job is completed, failed, cancelled, or expired when you want to remove the stored gateway record from normal API/UI surfaces.

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

video_id
string
required

The ID of the video generation request.

Response

200 - application/json

Video deletion response

id
string
object
string
deleted
boolean
Last modified on May 6, 2026