Veo3
GoogleのVeo 3による高品質動画生成
機能
- テキストから動画生成
- 高品質な出力
- 複数のアスペクト比
- オプションの透かし除去
料金設定
| Model | Credits |
|---|---|
| veo3 (high quality) | 130 (~$1.44) |
| veo3_fast (faster) | 30 (~$0.33) |
エンドポイント
POST
/api/v1/videos/generateパラメータ
| パラメータ | タイプ | 必須 | 説明 |
|---|---|---|---|
| model | string | 必須 | "veo3" or "veo3_fast" |
| prompt | string | 必須 | Text description of the video |
| aspect_ratio | string | オプション | "landscape", "portrait", or "square" |
| watermark | boolean | オプション | Include watermark (default: true) |
| seeds | number[] | オプション | Random seeds for reproducibility |
| enable_fallback | boolean | オプション | Enable fallback providers |
| enable_translation | boolean | オプション | 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"
}'