CometAPI の feed-get task API(POST /runway/feed)を使用して、X-Runway-Version に対応したバージョン別の結果とともに Runway の動画生成 feed タスクを取得します。
curl --request POST \
--url https://api.cometapi.com/runway/feed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50"
}
'{
"code": "success",
"message": "",
"data": {
"task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
"action": "IMAGE_TO_VIDEO",
"status": "QUEUED",
"fail_reason": "",
"submit_time": 1773366766,
"start_time": 0,
"finish_time": 0,
"progress": "0%",
"data": {
"id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
"status": "PENDING",
"createdAt": "2026-03-13T09:52:46+08:00"
}
}
}/runway/pro/* ワークフローにおける主要なポーリング手順です。
code と messagedata.status と data.progressdata.datavideo_url、poster、または関連するプロバイダー出力などの最終アセットフィールドまず reverse-format タスクを作成します
code: success と data.status: QUEUED を含むラップされたペイロードが返されることが確認されました。Bearer token authentication. Use your CometAPI key.
Optional Runway version header, for example 2024-11-06.
Runway task id returned by the create endpoint.
curl --request POST \
--url https://api.cometapi.com/runway/feed \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50"
}
'{
"code": "success",
"message": "",
"data": {
"task_id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
"action": "IMAGE_TO_VIDEO",
"status": "QUEUED",
"fail_reason": "",
"submit_time": 1773366766,
"start_time": 0,
"finish_time": 0,
"progress": "0%",
"data": {
"id": "3d957031-9a2a-45e2-9dc7-bc8513059c50",
"status": "PENDING",
"createdAt": "2026-03-13T09:52:46+08:00"
}
}
}