视频解析
curl --request POST \
--url https://open251124.ai.jko.cc/workflow/aiVideoParse \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_url": "https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
file_url: 'https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4'
})
};
fetch('https://open251124.ai.jko.cc/workflow/aiVideoParse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/workflow/aiVideoParse"
payload = { "file_url": "https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"id": 17477,
"status": "Running",
"amount": "12"
}
}视频解析
视频解析
POST
/
workflow
/
aiVideoParse
视频解析
curl --request POST \
--url https://open251124.ai.jko.cc/workflow/aiVideoParse \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"file_url": "https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
file_url: 'https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4'
})
};
fetch('https://open251124.ai.jko.cc/workflow/aiVideoParse', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://open251124.ai.jko.cc/workflow/aiVideoParse"
payload = { "file_url": "https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"status": 100,
"message": "操作成功",
"data": {
"id": 17477,
"status": "Running",
"amount": "12"
}
}授权
在 Authorization 请求头中传入带 Bearer 头的 API 密钥,例如:Bearer xxxxxx 如何获取 API 密钥?
请求体
application/json
视频 URL
示例:
"https://wenlv-debug.oss-cn-shenzhen.aliyuncs.com/carimg/2baf3c/2025-10/0//coze_AiVideo202510291126186944.mp4"
最后修改于 2026年9月21日
⌘I

