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

Documentation Index

Fetch the complete documentation index at: https://docs.openai-nebula.com/llms.txt

Use this file to discover all available pages before exploring further.

Introduction

Query traditional 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"
  }
}