Usa l’API del task feed-get di CometAPI (POST /runway/feed) per recuperare i task del feed di generazione video di Runway con supporto X-Runway-Version per risultati versionati.
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 e message esterni per lo stato a livello di wrapperdata.status e data.progress per l’avanzamento del taskdata.data annidato per i metadati del task lato providervideo_url, poster o output correlati del provider quando il task viene completatoCrea prima il task in formato inverso
Riprova una volta se il task non è ancora visibile
task_not_exist. Se succede, attendi alcuni secondi ed esegui di nuovo il polling.code: success e 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"
}
}
}