Veo3

GoogleのVeo 3による高品質動画生成

機能
  • テキストから動画生成
  • 高品質な出力
  • 複数のアスペクト比
  • オプションの透かし除去
料金設定
ModelCredits
veo3 (high quality)130 (~$1.44)
veo3_fast (faster)30 (~$0.33)
エンドポイント
POST/api/v1/videos/generate
パラメータ
パラメータタイプ必須説明
modelstring必須"veo3" or "veo3_fast"
promptstring必須Text description of the video
aspect_ratiostringオプション"landscape", "portrait", or "square"
watermarkbooleanオプションInclude watermark (default: true)
seedsnumber[]オプションRandom seeds for reproducibility
enable_fallbackbooleanオプションEnable fallback providers
enable_translationbooleanオプションAuto-translate non-English prompts
リクエストの例
{
  "model": "veo3",
  "prompt": "A drone shot flying over a tropical beach at sunset",
  "aspect_ratio": "landscape"
}
レスポンス例
{
  "success": true,
  "data": {
    "task_id": "task_veo123",
    "credits_used": 130,
    "remaining_credits": 370,
    "model": "veo3"
  }
}
コード例
curl -X POST https://gateway.nanobananapro.site/api/v1/videos/generate \
  -H "Authorization: Bearer sk-your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "veo3",
    "prompt": "A drone shot flying over a tropical beach at sunset",
    "aspect_ratio": "landscape"
  }'
Nano Banana Pro API