Skip to main content
GET
/
v1
/
videos
/
{id}
Query video generation tasks
curl --request GET \
  --url https://proxy.innk.cc/v1/videos/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "task_1234567890",
  "object": "video",
  "created_at": 1759938772,
  "status": "queued",
  "model": "sora-2",
  "progress": 50,
  "video_url": "https://example.com/video.mp4"
}

Authorizations

Authorization
string
header
required

The authentication header format is Bearer <API_KEY>, where <API_KEY> is your API token.

Path Parameters

id
string
required

Task ID

Response

200 - application/json

successful response

id
string
required

Task ID

Example:

"task_1234567890"

object
string
required

Object type

Example:

"video"

created_at
integer
required

Creation time

Example:

1759938772

status
enum<string>

Task status

Available options:
queued,
in_progress,
completed,
failed
model
string

Model name

Example:

"sora-2"

progress
integer

schedule

Example:

50

video_url
string

Video URL

Example:

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