跳转到主要内容
POST
/
video
/
complete
/api/v1/video/complete
curl --request POST \
  --url https://api.venice.ai/api/v1/video/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "video-model-123",
  "queue_id": "123e4567-e89b-12d3-a456-426614174000"
}
'
{
  "success": true
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

请求体

application/json
model
string
必填

The ID of the model used for video generation.

示例:

"video-model-123"

queue_id
string
必填

The ID of the video generation request.

示例:

"123e4567-e89b-12d3-a456-426614174000"

响应

Video generation request completed successfully

success
boolean
必填

Indicates whether the video cleanup was successful.

示例:

true