cURL
curl --request GET \ --url https://models.kapon.cloud/v1/videos/{video_id}/content \ --header 'Authorization: Bearer <token>'
"<string>"
使用 GET /v1/videos//content 下载成片(支持断点重传)。
completed
Authorization: Bearer <Token>
export BASE_URL="https://models.kapon.cloud" export TOKEN="oh-xxxxxxxxxxxxxxxx" export VIDEO_ID="video_xxx" # 已完成的任务 id
curl -L "$BASE_URL/v1/videos/$VIDEO_ID/content" \ -H "Authorization: Bearer $TOKEN" \ --output out.mp4
API Key
视频任务 ID
视频文件
The response is of type file.
file