POST
/
video
/
submit
Submit video
curl --request POST \
  --url https://api.siliconflow.com/v1/video/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model": "Wan-AI/Wan2.2-T2V-A14B",
  "prompt": "<string>",
  "image_size": "1280x720"
}'
{
  "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:
Wan-AI/Wan2.2-T2V-A14B,
Wan-AI/Wan2.1-T2V-14B-720P,
Wan-AI/Wan2.1-T2V-14B-720P-Turbo
prompt
string
required

The text prompt to generate the video description from.

image_size
enum<string>
required

Length-width ratio of the generated image.

Available options:
1280x720,
720x1280,
960x960
negative_prompt
string

negative prompt

seed
integer

The seed for the random number generator.

Response

Successful response

requestId
string

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