Delete video

DELETE/v1/videos/{video_id}

Delete a video generation task and its content.

Authentication

Authorization Bearer

API key as bearer token in Authorization header.

Path Parameters

video_idstringrequired

The video task ID.

Response

idstring

Video task ID.

objectstring

Always video.

deletedboolean

Always true.

Request

Shell
1curl -X DELETE https://api.token360.ai/v1/videos/your-video-id \
2  -H "Authorization: Bearer sk-your-api-key"

Response

JSON
1{
2  "id": "your-video-id",
3  "object": "video",
4  "deleted": true
5}
Was this page helpful?