CQTAI
Google Veo · Video

Image to Video

📌 What is thisImage-to-video with veo-3.1-standard.
💡 When to useUse to animate an image (imageUrls required).

Endpoints

UsageMethodPath
Submit taskPOST/api/cqt/generator/veo
Query ResultGET/api/cqt/info/veo?id={taskId}
Recommended polling intervalPoll every 10-15s until status = succeeded / failed.

Request Parameters

ParamTypeRequiredDescription
modelstringRequiredveo-3.1-standard
imageUrlsstring[]RequiredInput images (required)
promptstringVideo description
aspectRatiostringAspect ratio, 1 of 8: 16:9 / 9:16 / 1:1 / 4:3 / 3:4 / 3:2 / 2:3 / 21:9, default 16:9 (each maps to a fixed resolution; see the size table; resolution auto-selected, no extra charge)
durationintegerDuration (sec) 4 / 6 / 8, default 6
enableTranslationbooleanTranslate the prompt, default false
enableExtendImgbooleanExtend the input image, default false

Request Example

curl -X POST https://api.cqtai.com/api/cqt/generator/veo \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "veo-3.1-standard",
    "prompt": "make this scene come alive",
    "imageUrls": ["https://example.com/scene.jpg"],
    "aspectRatio": "16:9",
    "duration": 6
  }'
# -> { "code":200, "data":"<taskId>" }

Response Example

{
  "code": 200,
  "data": {
    "id": "<taskId>",
    "status": "succeeded",
    "resultUrl": "https://.../result.mp4",
    "createTime": "2026-06-15 10:00:00",
    "completeTime": "2026-06-15 10:02:00"
  }
}

Billing & Credits

10 credits x duration (x your user rate). Auto-refunded on failure.