Skip to main content
GET
/
v1
/
videos
/
{task_id}
Video Task Status
curl --request GET \
  --url https://api.powertokens.ai/v1/videos/{task_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "task_abc123",
  "object": "video",
  "model": "MiniMax-Hailuo-2.3",
  "status": "completed",
  "progress": 100,
  "created_at": 1742515200,
  "completed_at": 1742515235,
  "metadata": {
    "url": "https://api.example.com/v1/videos/task_abc123/content"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

task_id
string
required

Public video task ID.

Response

Query successful.

id
string
object
string
Example:

"video"

model
string
status
string
Example:

"completed"

progress
integer
Example:

100

created_at
integer<int64>
completed_at
integer<int64>
metadata
object