Veo 3 API
$0.06-$0.24/sec /초
Developer-ready API access
Pay-as-you-go access through PiAPI.
$0.06-$0.24/sec /초
Developer-ready API access
Capabilities from the production model page.
가로/세로, 720p/1080p 형식으로 생성하여 소셜 및 시네마틱 포맷에 맞출 수 있습니다.
Veo 3는 대사와 환경음을 위한 통합 오디오 생성을 제공합니다.
Veo 3는 사실감, 물리 표현, 프롬프트 충실도를 개선해 영화 같은 결과를 제공합니다.
Fast 모드는 T2V와 I2V를 지원해 실험, 광고, 확장형 제작에 적합합니다.
스타일, 리듬, 구성을 제어하면서 시각과 오디오의 일관성을 높일 수 있습니다.
출력물은 저작권, 개인정보, 편향 위험을 줄이기 위해 검사됩니다.
작업을 백그라운드로 제출하고 콜백 기반 흐름으로 나중에 결과를 받을 수 있습니다.
첫 프레임과 마지막 프레임을 조정해 더 부드러운 전환과 정밀한 연출을 만들 수 있습니다.
Sign up and grab an API key from the PiAPI workspace — free credits are included on sign-up.
Add credits on the billing page when you are ready to scale beyond the free tier.
POST your first task following the API docs, then poll the task until the result is ready.
Prototype prompts and settings in the the playground above before wiring them into your product.
curl -X POST 'https://api.piapi.ai/api/v1/task' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"model": "veo3",
"task_type": "veo3-video",
"input": {
"prompt": "A cinematic shot of waves rolling onto a golden beach at sunset",
"duration": "8s",
"resolution": "720p",
"aspect_ratio": "16:9",
"generate_audio": false
}
}'
# → { "task_id": "9d5a…", "status": "pending" }curl 'https://api.piapi.ai/api/v1/task/{task_id}' \
-H 'X-API-Key: YOUR_API_KEY'
# poll until status = completed
{
"data": {
"status": "completed",
"output": {
"video_url": "https://img.theapi.app/ephemeral/…"
}
}
}$ npm install -g piapi-cli $ piapi run veo-3 \ prompt="A cinematic shot of waves rolling onto a golden beach at sunset" \ duration=8s \ resolution=720p \ aspect_ratio=16:9 \ generate_audio=false ✓ Task completed! https://img.theapi.app/ephemeral/…
Google Veo 3 는 시네마틱 비디오 생성을 위한 고급 Veo 3 AI 모델입니다.
PiAPI의 Veo AI API 엔드포인트를 사용해 프롬프트를 제출하고 생성된 영상을 받을 수 있습니다.
Veo 3는 네이티브 오디오, 시간적 일관성, 더 현실적인 움직임이 강점입니다.
네, Veo API 호출 시 길이와 해상도를 제어할 수 있습니다.
네. 많은 팀이 광고, 예고편, 콘셉트 시각화에 사용합니다.
네, PiAPI는 Veo 3.1 API를 지원합니다. Veo 3.1 페이지를 방문해 워크플로에 바로 통합해 보세요.
네, 빠른 워크플로를 위해 Veo 3 API Fast 모드를 제공합니다.
More questions? See the API docs.