runway_getTask
Retrieve task status and results from Runway API operations. Check if video or image generation tasks have completed successfully, failed, or are still processing.
Instructions
Get the details of a task, if the task status is 'SUCCEEDED', there will be a 'url' field in the response. If the task status is 'FAILED', there will be a 'error' field in the response. If the task status is 'PENDING' or 'RUNNING', you can call this tool again in 5 seconds to get the task details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}