Veo3

Google의 Veo 3를 활용한 고품질 영상 생성

기능
  • 텍스트-비디오 생성
  • 고품질 출력
  • 다양한 화면비
  • 선택적 워터마크 제거
요금제
ModelCredits
veo3 (high quality)130 (~$1.44)
veo3_fast (faster)30 (~$0.33)
엔드포인트
POST/api/v1/videos/generate
매개변수
Parameter타입필수설명
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