CometAPI を使用して GET /runwayml/v1/tasks/ を呼び出し、task ID によって Runway の動画生成タスクの status、progress、outputs、metadata を取得します。
curl --request GET \
--url https://api.cometapi.com/runwayml/v1/tasks/{id} \
--header 'Authorization: Bearer <token>'{
"id": "d0658ae1-bbdd-4adc-aaba-fd8070e14d79",
"status": "SUCCEEDED",
"createdAt": "2026-05-01T12:47:47.351Z",
"output": [
"https://example.com/output.mp4"
]
}このエンドポイントは、id によって Runway タスクを確認するために使用します。Documentation Index
Fetch the complete documentation index at: https://apidoc.cometapi.com/llms.txt
Use this file to discover all available pages before exploring further.
idstatusoutputfailure と failureCodetask_not_exist が返ることがありますfeed ルートは、同じ queued または in-progress のレスポンスを返すことがありますBearer token authentication. Use your CometAPI key.
Optional Runway version header, for example 2024-11-06.
Runway task id returned by the create endpoint.
Current task state.
Task ID.
Task status.
PENDING, RUNNING, SUCCEEDED, FAILED Task creation timestamp.
Output URLs returned after the task succeeds.
Failure reason returned after the task fails.
Failure code returned after the task fails.
Task progress.
curl --request GET \
--url https://api.cometapi.com/runwayml/v1/tasks/{id} \
--header 'Authorization: Bearer <token>'{
"id": "d0658ae1-bbdd-4adc-aaba-fd8070e14d79",
"status": "SUCCEEDED",
"createdAt": "2026-05-01T12:47:47.351Z",
"output": [
"https://example.com/output.mp4"
]
}