Skip to main content

Endpoint

GET https://qingbo.dev/v1/tasks/{task_id}

Response

{
  "task_id": "task_xxx",
  "model": "veo3",
  "action": "generate",
  "status": "completed",
  "created_at": 1720000000,
  "start_time": 1720000002,
  "completed_at": 1720000030,
  "progress": 100,
  "result": {
    "images": [],
    "videos": [
      { "url": "https://...", "expires_at": 1720086400 }
    ]
  }
}

Status Values

StatusDescription
queuedWaiting to be processed
processingGeneration in progress, check the progress field for current progress
completedCompleted, result contains the generation output
failedFailed, error contains error details
cancelledCancelled

Polling Recommendations

  • Polling interval: 2-5 seconds
  • Set a maximum wait time (recommended: 5 minutes)
  • Check the progress field to monitor generation progress
URLs in generation results have an expiration period (expires_at). Please download and save them promptly.