Video API
Analytics
Audit logs
Categories
Folders
Identity providers
Transcribes
Videos
- GETList videos
- POSTCreate video
- GETFetch video
- DELDelete video
- PATCHUpdate video
- POSTCreate track
- DELDelete track
- POSTReplace thumbnail
- POSTCreate card
- DELDelete card
- PATCHUpdate card
- POSTCreate gate
- DELDelete gate
- PATCHUpdate gate
- POSTCreate hotspot
- DELDelete hotspot
- PATCHUpdate hotspot
- POSTCreate chapter
- DELDelete chapter
- PATCHUpdate chapter
Folders
Get videos in folder
Get videos in a folder
GET
/
folders
/
{FOLDER_ID}
/
videos
Copy
curl --request GET \
--url https://api.vidbeo.com/v2/folders/{FOLDER_ID}/videos \
--header 'Authorization: Bearer <token>'
Copy
{
"success": true,
"result": [],
"links": {
"next": "https://api.vidbeo.com/v2/videos?limit=10&cursor=AbCdEfGhIJkLMnOpQrStUvWxYz"
},
"errors": []
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the folder
Example:
"abcde12345abcde12345a"
Response
200
application/json
Videos
The response is of type object
.
Copy
curl --request GET \
--url https://api.vidbeo.com/v2/folders/{FOLDER_ID}/videos \
--header 'Authorization: Bearer <token>'
Copy
{
"success": true,
"result": [],
"links": {
"next": "https://api.vidbeo.com/v2/videos?limit=10&cursor=AbCdEfGhIJkLMnOpQrStUvWxYz"
},
"errors": []
}
Assistant
Responses are generated using AI and may contain mistakes.