Veo 3 is now available for developers in the Gemini API
Logan Kilpatrick

Logan Kilpatrick @logankilpatrick

About: Lead product for Google AI @ AI Studio & the Gemini API

Location:
Chicago
Joined:
Jun 4, 2021

Veo 3 is now available for developers in the Gemini API

Publish Date: Jul 20
22 7

Hey folks : ) Excited to share that the Veo 3 API is now available. It brings our SOTA model with native audio generation (first of its kind) to devs through a simple API. You can read our launch blog post here: https://developers.googleblog.com/en/veo-3-now-available-gemini-api/

import time
from google import genai
from google.genai import types

client = genai.Client()

operation = client.models.generate_videos(
    model="veo-3.0-generate-preview",
    prompt="Panning wide shot of a purring kitten sleeping in the sunshine under a waterfall",
)

while not operation.done:
    time.sleep(20)
    operation = client.operations.get(operation)

for n, generated_video in enumerate(operation.response.generated_videos):
    client.files.download(file=generated_video.video)
    generated_video.video.save(f"video{n}.mp4")

Enter fullscreen mode Exit fullscreen mode

Happy building : ) and please reach out if you run into any issues.

Comments 7 total

  • Aayush Pokharel
    Aayush PokharelJul 22, 2025

    It's not free, is it?

  • Parag Nandy Roy
    Parag Nandy RoyJul 22, 2025

    Audio and video generation in one API is always gonna be amazing..

  • Abhiwan Technology
    Abhiwan TechnologyJul 22, 2025

    You have to pay to access more features of it. Nowadays most of the India based top Metaverse application development companies were thinking to try this.

  • AlannaYoung
    AlannaYoungJul 22, 2025

    Veo 3 now being available in the Gemini API is a game-changer for developers—it’s like giving superpowers to anyone building video apps. With realistic video and sound generation, it opens doors for creative storytelling, much like how Pirlo TV delivers immersive match experiences. Do you see AI-generated videos replacing traditional highlight reels anytime soon?

  • Peter Vivo
    Peter VivoJul 22, 2025

    How much the price tag?

  • picsart apk
    picsart apkJul 24, 2025

    Can I attach this to my website ?

  • picsart apk
    picsart apkJul 24, 2025

    Can I also attach my website?

Add comment