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",
  "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

Response

200
application/json
Successful response

The response is of type object.