Poe API
Veo 3 produces incredibly high-quality videos across a diverse range of subjects and styles. It incorporates an enhanced understanding of real-world physics and the subtleties of human movement and expression, resulting in greater detail and overall realism.
Veo 3 is fluent in the unique language of cinematography: you can request a specific genre, specify a lens, or suggest cinematic effects, and Veo 3 will deliver stunning 8-second video clips. It supports both text-to-video and image-to-video generation and also features native audio generation based on text prompts.
Note: Please note that Veo 3 does not accept audio attachments.
Optional parameters:
Set negative prompt to exclude specific elements (e.g., blurry, cloudy, or other attributes).
Set seed to set a specific seed value by entering the desired number.
Set aspect ratio followed by either 16:9 or 9:16.
Set duration followed by either 4s, 6s, 8s.
Powered by a server managed by @google. Learn more
- OFFICIAL
Build with Veo-3 using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "veo-3",
messages = [{
"role": "user",
"content": "POV shot of a driver in a vintage car, sunlight filtering through the windshield, capturing the retro dashboard and steering wheel"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.