一個驗證,對應所有 provider
一組 RunAPI key 即可解鎖整個 catalog。無需分開帳戶,亦無需為每個整合輪換密鑰。
It looks like you may prefer a different language. Switch anytime.
透過 RunAPI 使用 Veo 3.1 API,包含 model skill、統一驗證與按用量計費。
curl -X POST https://runapi.ai/api/v1/veo_3_1/text_to_video \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "veo-3.1-lite",
"prompt": "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
}'
import { Veo31Client } from "@runapi.ai/veo-3-1";
const client = new Veo31Client();
const result = await client.textToVideo.run({
model: "veo-3.1-lite",
prompt: "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio.",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\Veo31\Veo31Client;
$client = new Veo31Client();
$result = $client->textToVideo->run([
'model' => 'veo-3.1-lite',
'prompt' => 'Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio.',
]);
require "runapi/veo_3_1"
client = RunApi::Veo31::Client.new
result = client.text_to_video.run(
model: "veo-3.1-lite",
prompt: "Generate an 8-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
)
npx skills add runapi-ai/veo-3.1 -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
Veo 3.1 is Google DeepMind's video generation model that produces high-fidelity video clips with native audio synthesis, including ambient sound, dialogue, and music generated in sync with the visuals.
| Endpoint | 解析度 | 時長 | 價格 | |
|---|---|---|---|---|
| text_to_video | — | 4s, 6s, 8s | $2.50 / video |
以下為 veo-3.1 的定價。其他變體保留各自的 endpoint 定價。
此模型系列的共用 endpoints,例如延伸、增強或轉換操作。
挑選符合輸出類型、品質門檻與延遲目標的模型與變體。
設定 RunAPI key,並在 coding workspace 安裝 model skill。
使用 skill 指引,在你的 app 內加入模型功能。
透過 task ID 查詢、在支援時串流,或處理 webhook callback。
一組 RunAPI key 即可解鎖整個 catalog。無需分開帳戶,亦無需為每個整合輪換密鑰。
按次以 USD 收費,每月結算。失敗的生成不會收費。
型別化 schema 與 setup 備註打包在 model skill 內,讓實作從正確契約開始。
Yes — Veo 3.1 natively synthesizes synchronized audio including dialogue, sound effects, and ambience in the same generation call.
Native 1080p generation with upscaling support to 4K (3840×2160). Aspect ratios include 16:9 and 9:16.
4, 6, or 8 seconds per generation. Scene Extension works once from a text-to-video result and cannot be chained.
All Veo outputs include an invisible SynthID watermark embedded in the pixel data, which persists through compression and resizing.
Veo 3.1 generates native audio synchronized with the on-screen action, matching sound to the motion and events in the scene.
先選最平而且符合你質素要求的版本。大多數團隊會先用快速版本,之後再升級到 pro 用於正式生產。