AM

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
ModelCredits
veo3 (high quality)130 (~$1.44)
veo3_fast (faster)30 (~$0.33)
Endpoint
POST/api/v1/videos/generate
Parameters
ParameterTypeRequiredDescription
modelstringRequired"veo3" or "veo3_fast"
typestringOptional"text-to-video" or "image-to-video" (default: text-to-video)
promptstringRequiredText description of the video
image_urlsstring[]OptionalInput image URLs for image-to-video
input_imagestringOptionalDeprecated. Alias for image_urls[0]
aspect_ratiostringOptional"16:9", "9:16", or "Auto" (aliases: "landscape", "portrait", "square")
watermarkbooleanOptionalInclude watermark (default: true)
seedsnumberOptionalRandom seed for reproducibility
enable_fallbackbooleanOptionalEnable fallback providers
enable_translationbooleanOptionalAuto-translate non-English prompts
Request Example
{
  "model": "veo3",
  "prompt": "A drone shot flying over a tropical beach at sunset",
  "aspect_ratio": "16:9"
}
Response Example
{
  "success": true,
  "data": {
    "task_id": "task_veo123",
    "credits_used": 130,
    "remaining_credits": 370,
    "model": "veo3"
  }
}
Code Examples
curl -X POST https://gateway.apimall.ai/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": "16:9"
  }'
API Documentation - Veo3 | API Mall