Skip to main content
GET
https://ai-nebula.com
/
prod-api
/
nebula
/
v4
/
api
/
textOrImage2videoQuery
/
{taskId}
Image to Video - First/Last Frame Mode - Query Task
curl --request GET \
  --url https://ai-nebula.com/prod-api/nebula/v4/api/textOrImage2videoQuery/{taskId} \
  --header 'Authorization: <authorization>'
{
  "code": 200,
  "msg": "Operation successful",
  "data": {
    "id": "task-1234567890",
    "status": "succeeded",
    "url": "https://example.com/video.mp4"
  }
}

Introduction

Query first/last frame mode task status and result.

Authentication

Authorization
string
required
Bearer Token, e.g., Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9... How to get: Obtain via the POST interface in the Authentication module at the top left, https://docs.openai-nebula.com/en/nebula-lab-v4/endpoint/get-token

Request Parameters

taskId
string
required
Task ID, returned by submit task interface

Response Example

{
  "code": 200,
  "msg": "Operation successful",
  "data": {
    "id": "task-1234567890",
    "status": "succeeded",
    "url": "https://example.com/video.mp4"
  }
}