check-video-status
Monitor the progress of a video generation request by providing the request ID. Track status and ensure completion using AI models like Luma Ray2 or Kling.
Instructions
Check the status of a video generation request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | AI model used for the request (luma=Ray2, kling=Kling) | luma |
request_id | Yes | The request ID to check |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": "luma",
"description": "AI model used for the request (luma=Ray2, kling=Kling)",
"enum": [
"luma",
"kling"
],
"type": "string"
},
"request_id": {
"description": "The request ID to check",
"type": "string"
}
},
"required": [
"request_id"
],
"type": "object"
}