メインコンテンツへスキップ
更新日: 2026-06-24

AIGC GV VOD 呼び出しガイド

aigc-video-gv-* は Crazyrouter が Tencent VOD ルートで公開している GV / Google Veo 動画モデルです。AIGC Kling VOD と同じ OpenAI 風の非同期動画 API を使います。
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 で送る必要があります。Crazyrouter は image_listFileInfos に変換し、GV の複数画像リクエストでは LastFrameUrl を使いません。

よく使う metadata フィールド

フィールド説明
resolution720P1080P2K4K。利用可能な仕様は Pricing ページを参照
sound音声生成の有無。true / falseon / off
audio_generationEnabled / Disabled を直接指定
image_list複数画像参照リスト
reference_type / ReferenceTypeGV 参照タイプ。一般的には asset または style
価格、割引、有効な仕様はリアルタイムの Pricing ページ を基準にしてください。