Skip to main content

Get Video Content

Get generated video content (may be binary stream or download link, depending on platform implementation).

Try It

GET/v1/videos/{video_id}/contenthttps://api-platform.ope.ai

Authentication

Uses Bearer Token authentication.

  • Header: Authorization: Bearer <token>
  • Example: Authorization: Bearer sk-xxxxxx

Path parameters

ParameterTypeRequiredDescription
video_idstringYesVideo ID (usually from task completion output)

Request examples

Interface path is based on actual platform (Try it allows editing path).

curl -L "https://api-platform.ope.ai/v1/videos/{video_id}/content" \
-H "Authorization: Bearer $OPEAI_API_KEY" \
-o output.mp4

Response examples

Content-Type: video/mp4 or other video format

Response body is binary video stream, can be saved directly as a file.

HTTP/1.1 200 OK
Content-Type: video/mp4
Content-Length: 15728640
Content-Disposition: attachment; filename="video_695c832d.mp4"

[Binary video data]