List videos
GET/videos
List videos
Query Parameters
after: optional string
Identifier for the last item from the previous pagination request
limit: optional number
Number of items to retrieve
minimum0
maximum100
Returns
first_id: string
The ID of the first item in the list.
has_more: boolean
Whether there are more items available.
last_id: string
The ID of the last item in the list.
object: "list"
The type of object returned, must be list.
List videos
curl https://api.openai.com/v1/videos \
-H "Authorization: Bearer $OPENAI_API_KEY"{
"data": [
{
"id": "id",
"completed_at": 0,
"created_at": 0,
"error": {
"code": "code",
"message": "message"
},
"expires_at": 0,
"model": "string",
"object": "video",
"progress": 0,
"prompt": "prompt",
"remixed_from_video_id": "remixed_from_video_id",
"seconds": "4",
"size": "720x1280",
"status": "queued"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}Returns Examples
{
"data": [
{
"id": "id",
"completed_at": 0,
"created_at": 0,
"error": {
"code": "code",
"message": "message"
},
"expires_at": 0,
"model": "string",
"object": "video",
"progress": 0,
"prompt": "prompt",
"remixed_from_video_id": "remixed_from_video_id",
"seconds": "4",
"size": "720x1280",
"status": "queued"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id",
"object": "list"
}