Generate Videos/Images
Get Generated Video List
Get the generated video list
Start with the API
GET https://devapi.vidnoz.com/v2/video/list
Request Attributes
Parameter | Required | Type | Description |
---|---|---|---|
limit | false | int | Number of items per page, range 1–10,000; default is 100. |
end_cursor | false | string | End marker used to retrieve the next page of data. |
Response Attributes
Parameter | Type | Description |
---|---|---|
videos | array | Video List |
videos.id | string | Video ID |
videos.name | string | Video Name |
videos.status | int | Video status: 0 = draft only; 1 = generated; 2 = generating; 3 = generating failed |
videos.create_at | string | Creation time |
videos.file_720p | obj | 720p file information |
videos.file_720p.size | int | File size (unit: byte) |
videos.file_720p.duration | int | Video duration (unit: second) |
videos.file_720p.url | string | Download Link |
videos.file_1080p | obj | 1080p file information |
videos.file_1080p.size | int | File size (unit: byte) |
videos.file_1080p.duration | int | Video duration (unit: second) |
videos.file_1080p.url | string | Download Link |
Example
Request Attributes
curl --request POST \
--url https://devapi.vidnoz.com/v2/video/list \
--header "accept: application/json" \
--header "Authorization: Bearer $API_KEY" \
Response Attributes
{
"code": 200,
"message": "ok",
"data": {
"total": 26,
"end_cursor": "WGdtdHJDMmpueG1ZazM0OVlQQys2QT09",
"videos": [
{
"id": "WGdtdHJDMmpueG1ZazM0OVlQQys2QT09",
"name": "Video name",
"status": 1,
"create_at": "2024-09-06 03:10:28",
"file_720p": {
"size": 10258541,
"duration": 6.58,
"url": "https://r2-aivid-001-test.214dcedd27630abef236dcb67de0ce92.r2.cloudflarestorage.com/demo/user_id/20230725/64bf80cadc4b7.mp4?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=91ac9d3ee865be05c575d38c9bdd1275%2F20250312%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20250312T072705Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604800&X-Amz-Signature=fba12ea5b2d3864c0524177991478db5952ce6cdc635ea660e13066f1c8e1fd3"
},
"file_1080p": {
"size": 52125432,
"duration": 6.58,
"url": "https://r2-aivid-001-test.214dcedd27630abef236dcb67de0ce92.r2.cloudflarestorage.com/demo/user_id/20230725/64bf80cadc4b7.mp4?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=91ac9d3ee865be05c575d38c9bdd1275%2F20250312%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20250312T072705Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604800&X-Amz-Signature=fba12ea5b2d3864c0524177991478db5952ce6cdc635ea660e13066f1c8e1fd3"
}
}
]
}
}