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
Videos
Create track
Create a new track
POST
/
videos
/
{VIDEO_ID}
/
tracks
Copy
curl --request POST \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/tracks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"label": "English",
"language": "en-US",
"kind": "subtitles",
"url": "<string>",
"auto_generated": false
}'
Copy
{
"success": true,
"result": {
"id": "abcde12345abcde12345a",
"language": "en-US",
"label": "English",
"kind": "subtitles",
"url": "<string>"
},
"links": {},
"errors": []
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the video
Example:
"abcde12345abcde12345a"
Body
application/json
Response
200
application/json
Track
The response is of type object
.
Copy
curl --request POST \
--url https://api.vidbeo.com/v2/videos/{VIDEO_ID}/tracks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"label": "English",
"language": "en-US",
"kind": "subtitles",
"url": "<string>",
"auto_generated": false
}'
Copy
{
"success": true,
"result": {
"id": "abcde12345abcde12345a",
"language": "en-US",
"label": "English",
"kind": "subtitles",
"url": "<string>"
},
"links": {},
"errors": []
}
Assistant
Responses are generated using AI and may contain mistakes.