DiscordPlatform
  • Getting Started
    • Overview
    • Quick Start
    • Pricing
  • Research
    • Overview
    • Streaming
    • Reasoning Steps
    • Web Search
    • Structured Output
    • Parallel Thinking
    • Best Practices
    • Errors
    • Examples
  • Chat
    • Overview
    • Chat with Image, Video, and Audio
    • Function Calling
    • Models
    • API Versioning
    • Python SDK
  • Vision
    • Overview
    • Pricing
    • Video Management
    • Video Search
    • Video QA
    • Highlight Reel Generation
    • Metadata Tagging
    • Image Management
    • Image Search
  • Speech
    • Overview
    • Audio Transcription
    • Speech Translation
    • Speech-to-Speech Translation
  • Resources
    • FAQs
    • Changelog
    • System Status
LogoLogo
DiscordPlatform
VisionAPI ReferenceVideo Management

DELETE
https://vision-agent.api.reka.ai/videos/delete
DELETE
/videos/delete
1import requests
2
3url = "https://vision-agent.api.reka.ai/videos/delete"
4
5payload = { "video_ids": ["550e8400-e29b-41d4-a716-446655440000"] }
6headers = {
7 "X-Api-Key": "<apiKey>",
8 "Content-Type": "application/json"
9}
10
11response = requests.delete(url, json=payload, headers=headers)
12
13print(response.json())
Try it
200Deleted
1{
2 "status": "success",
3 "message": "Videos deleted successfully"
4}
Was this page helpful?
Previous

Search Videos

Next
Built with
Delete specific videos by IDs
Delete Videos

Authentication

X-Api-Keystring
API Key authentication via header

Request

This endpoint expects an object.
video_idslist of stringsRequired
List of video IDs to delete

Response

OK
statusstring
Status of the deletion
messagestring
Status message

Errors