POST
/
video
/
submit
curl --request POST \
  --url https://api.siliconflow.cn/v1/video/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "tencent/HunyuanVideo",
  "prompt": "<string>",
  "seed": 123
}'
{
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Use the following format for authentication: Bearer <your api key>

Body

application/json
model
enum<string>
required

Corresponding Model Name. To better enhance service quality, we will make periodic changes to the models provided by this service, including but not limited to model on/offlining and adjustments to model service capabilities. We will notify you of such changes through appropriate means such as announcements or message pushes where feasible.

Available options:
tencent/HunyuanVideo
prompt
string
required

The text prompt to generate the video description from.

seed
integer

The seed for the random number generator.

Response

200
application/json
Successful response
requestId
string

The requestId generated by this request needs to be used when calling the status interface.