Skip to content

Delete A Video

DELETE /videos/<video-id>/delete

Deletes a video from your library. Use the video ID in the URL.

Example request

delete.js
fetch('https://spatialgen.com/api/videos/<video-id>/delete', {
method: 'DELETE',
headers: {
'X-SPATIALGEN-APPKEY': apiKey,
}
})

Example Response

response.json
{"status":204 }