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
}
Deletes the requested video generation job from the upstream provider when supported.

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 February 11, 2026