resources/videos/methods/download_content/index.md +0 −30 deleted
File Deleted View Diff
1## Retrieve video content
2
3**get** `/videos/{video_id}/content`
4
5Download the generated video bytes or a derived preview asset.
6
7Streams the rendered video content for the specified video job.
8
9### Path Parameters
10
11- `video_id: string`
12
13### Query Parameters
14
15- `variant: optional "video" or "thumbnail" or "spritesheet"`
16
17 Which downloadable asset to return. Defaults to the MP4 video.
18
19 - `"video"`
20
21 - `"thumbnail"`
22
23 - `"spritesheet"`
24
25### Example
26
27```http
28curl https://api.openai.com/v1/videos/$VIDEO_ID/content \
29 -H "Authorization: Bearer $OPENAI_API_KEY"
30```