Veo3
Google's Veo 3 for high-quality video generation
Features
- Text-to-video generation
- High quality output
- Multiple aspect ratios
- Optional watermark removal
Pricing
| Model | Credits |
|---|---|
| veo3 (high quality) | 130 (~$1.44) |
| veo3_fast (faster) | 30 (~$0.33) |
Endpoint
POST
/api/v1/videos/generateParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| model | string | Required | "veo3" or "veo3_fast" |
| prompt | string | Required | Text description of the video |
| aspect_ratio | string | Optional | "landscape", "portrait", or "square" |
| watermark | boolean | Optional | Include watermark (default: true) |
| seeds | number[] | Optional | Random seeds for reproducibility |
| enable_fallback | boolean | Optional | Enable fallback providers |
| enable_translation | boolean | Optional | Auto-translate non-English prompts |
Request Example
{
"model": "veo3",
"prompt": "A drone shot flying over a tropical beach at sunset",
"aspect_ratio": "landscape"
}Response Example
{
"success": true,
"data": {
"task_id": "task_veo123",
"credits_used": 130,
"remaining_credits": 370,
"model": "veo3"
}
}Code Examples
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"
}'