Veo 3.1
High-fidelity video generation up to 4K with natively synthesized dialogue, sound effects, and ambience.
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/veo-3.1 -g
Install the Veo 3.1 skill for me: 1. Clone https://github.com/runapi-ai/veo-3.1 2. Copy the skills/veo-3.1/ directory into your user-level skills directory (e.g. ~/.claude/skills/ for Claude Code, ~/.codex/skills/ for Codex). 3. Verify that SKILL.md is present. 4. Confirm the install path when done.
Veo 3 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.
- Installable agent skill
- Unified API key
- SDK examples included
- Les générations échouées ne sont pas facturées
Variantes
Utility endpoints
Shared endpoints for this model line, such as extension, enhancement, or conversion actions.
Use this model from your agent
# User prompt to the agent
"Generate a 10-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
// Code generated by the agent via @runapi.ai/veo-3.1
import { Veo31Client } from '@runapi.ai/veo-3.1';
const client = new Veo31Client();
const result = await client.textToVideo.run({
model: 'veo-3.1',
prompt: 'Generate a 10-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio.',
});
How to call this model
Install the skill
Add the model skill to your agent or install the SDK package.
Authenticate once
Use your RunAPI key for every supported model.
Send a request
Use the unified schema for the endpoint you need.
Receive output
Poll by task ID or handle the callback when the generation completes.
SDK quickstart
curl -X POST https://runapi.ai/api/v1/veo_3_1/text_to_video \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "veo-3.1",
"prompt": "Generate a 10-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",
prompt: "Generate a 10-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",
prompt: "Generate a 10-second cinematic drone shot of a coastal highway at golden hour, with waves crashing below and ambient wind audio."
)
Where Veo 3.1 fits
Veo 3 is a frontier video generation model by Google DeepMind, notable for its native audio-video joint synthesis. Through RunAPI, it benefits from unified API access and shared billing across all Google models.
Why use Veo 3.1 through RunAPI
One API key
Use the same credentials across models and providers.
Agent-ready
Installable skills include docs and schema for tool calls.
Predictable billing
Usage-based pricing is visible before you call.
Frequently asked questions
How do I call this model?
Use the RunAPI SDK, CLI, or REST endpoint shown on this page.
Do failed generations cost money?
Les générations échouées ne sont pas facturées
Can agents use it directly?
Yes. Install the model skill and your agent gets the docs, schema, and examples.