pull video from url
Developing
POST
/projects/{projId}/videos/imports/url
Pull video using Video URL
{
"url": "https://res.cloudinary.com/dqo0ssnti/video/upload/v1720440978/skshahriarahmedraka.mp4",
"name": "sk shahriar ahmed raka's video ",
"request_header": {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "video/mp4"
}
}
url
: URL of the video , (Note: url should contain video name and file type in extention)name
: Name of the videorequest_header
: it contains a JS object of key value pair . The key is the Header Name
and value is the Header Value
/projects/{projId}/videos/imports/url
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vidinfra.com/v1/projects/11e4ec5d-d79c-483a-b5e4-0a770e01d77c/videos/imports/url' \
--header 'Content-Type: application/json' \
--data-raw '{
"url": "https://res.cloudinary.com/dqo0ssnti/video/upload/v1720440978/sample_720_qxbv8e.mp4",
"name": "raka video",
"request_header": {
"Authorization": "Bearer YOUR_ACCESS_TOKEN",
"Content-Type": "video/mp4"
}
}'
Response Response Example
{}
Request
Path Params
projId
stringÂ
required
Example:
11e4ec5d-d79c-483a-b5e4-0a770e01d77c
Body Params application/json
Responses
Modified at 2025-06-19 04:59:01