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