跳转到主要内容
更新日期:2026-06-24

AIGC GV VOD 调用方法

aigc-video-gv-* 是 Crazyrouter 通过 Tencent VOD 线路接入的 GV / Google Veo 视频模型。调用方式与 AIGC Kling VOD 一致,使用 OpenAI 风格的视频异步接口:
POST /v1/video/generations
GET /v1/video/generations/{task_id}

可用模型

模型上游版本说明
aigc-video-gv-3.1GV 3.1高质量版本,支持有声视频
aigc-video-gv-3.1-fastGV 3.1 Fast更快版本,支持有声视频
aigc-video-gv-3.1-liteGV 3.1 Lite轻量版本,支持有声视频
Tencent VOD 的 GV 3.1 是 Google Veo 线路,不是 Kling。不要使用 aigc-video-kling-3.1 这类模型名。

创建任务

cURL
curl -X POST https://api.crazyrouter.com/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "aigc-video-gv-3.1-fast",
    "prompt": "a cinematic product shot with natural camera movement",
    "seconds": "5",
    "metadata": {
      "resolution": "1080P",
      "sound": true
    }
  }'

图生与多图参考

单图可使用 image;多图参考建议使用 metadata.image_list
cURL
curl -X POST https://api.crazyrouter.com/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "aigc-video-gv-3.1",
    "prompt": "combine the visual style of the references into one smooth shot",
    "seconds": "5",
    "metadata": {
      "resolution": "1080P",
      "image_list": [
        {
          "url": "https://example.com/ref-1.png",
          "reference_type": "asset"
        },
        {
          "url": "https://example.com/ref-2.png",
          "reference_type": "style"
        }
      ]
    }
  }'
GV 多图输入必须通过 FileInfos 传递。本站会把 image_list 转成 FileInfos,并且不会为 GV 多图请求使用 LastFrameUrl

常用 metadata 字段

字段说明
resolution720P1080P2K4K。实际可用规格以 Pricing 页面为准
sound是否生成声音,支持 true / falseon / off
audio_generation直接传 Enabled / Disabled
image_list多图参考数组
reference_type / ReferenceTypeGV 参考类型,常用 assetstyle
价格、折扣和可用规格以 Pricing 页面 为准。