POST
/
video
/
status
curl --request POST \
  --url https://api.siliconflow.cn/v1/video/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requestId": "<string>"
}'
{
  "status": "Succeed",
  "position": 123,
  "reason": "<string>",
  "results": {
    "videos": [
      {
        "url": "<string>"
      }
    ],
    "timings": {
      "inference": 123
    },
    "seed": 123
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
requestId
string
required

The requestId returned by the interface submit.

Response

200
application/json
Successful response
status
enum<string>

Status of the operation. Possible values are 'Succeed' and 'InProgress'.

Available options:
Succeed,
InProgress
position
integer

Position in the result set

reason
string

Reason for the operation

results
object