Skip to main content
GET
/
kling
/
v1
/
videos
/
image2video
/
{task_id}
Get Kling image-to-video task status
curl --request GET \
  --url https://api.aiid.edu.kg/kling/v1/videos/image2video/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "task_id": "abcd1234efgh",
  "status": "completed",
  "url": "https://example.com/video.mp4",
  "format": "mp4",
  "metadata": {
    "duration": 5,
    "fps": 30,
    "width": 1280,
    "height": 720,
    "seed": 20231234
  },
  "error": {
    "code": 123,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Use Bearer Token authentication. Format: Authorization: Bearer sk-xxxxxx

Path Parameters

task_id
string
required

Task ID

Response

Successfully retrieved task status

Video task status query response

task_id
string

Task ID

Example:

"abcd1234efgh"

status
enum<string>

Task Status

Available options:
queued,
in_progress,
completed,
failed
Example:

"completed"

url
string

Video resource URL (on success)

Example:

"https://example.com/video.mp4"

format
string

Video format

Example:

"mp4"

metadata
object

Video task metadata

error
object

Video task error message