For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DashboardAPI PricingGet an API key
  • Guides
    • Introduction
    • Getting started
    • Use with AI agents
    • Examples
    • Authentication
    • Handling async tasks
    • File uploads
    • File hydration
    • Embedding videos
    • Errors
    • Rate limits
    • Libraries & SDKs
  • REST API Reference
    • Overview
    • Workflows
        • POSTGenerate image
        • POSTGenerate video clip
        • POSTText to speech
        • POSTGenerate sound effect
        • POSTGenerate avatar clip
        • POSTVectorize image
        • POSTRemove background from an image
        • POSTRemove background from a video
        • POSTUpscale an image
        • POSTUpscale a video
        • POSTCancel tool execution
        • GETGet tool execution info
        • GETList files
        • POSTSearch files
        • GETGet file
        • POSTCreate file upload
        • POSTHydrate file
        • POSTArchive file
        • POSTEnable public preview
        • POSTDisable public preview
        • GETList avatar presenters
        • GETList TTS voices
        • GETList webhooks
        • POSTCreate webhook
        • DELDelete webhook
  • Webhook events
    • Overview
    • Changelog
LogoLogo
DashboardAPI PricingGet an API key
On this page
  • Coverage
  • Quick start
  • Source
Guides

Examples

Full-stack example apps using the VideoGen API.

Was this page helpful?
Previous

Authentication

Every request to the VideoGen API must include your API key.
Next
Built with

Clone a working app and start building. Each example targets a different SDK, framework, and use case.

AI Social Content Generator

Next.js + Vercel AI SDK + TypeScript SDK. An AI agent decides what images, videos, and voiceovers to generate from a topic prompt.

Talking Avatar Webhook Server

FastAPI + Python SDK. A production webhook pipeline that chains text-to-speech with avatar generation — no polling required.

AI Image Editor

OpenAI Agents SDK + Python SDK + Gradio. A conversational agent for generating, transforming, vectorizing, and upscaling images.

Coverage

AI Social ContentTalking Avatar WebhookAI Image Editor
SDKTypeScriptPythonPython
Agentic frameworkVercel AI SDK—OpenAI Agents SDK
Web frameworkNext.js 15FastAPIGradio
Async patternPollingWebhooksPolling
File uploadNoYes (audio)Yes (images)
Deploy targetVercelDocker / RailwayHF Spaces

Quick start

$git clone https://github.com/video-gen/videogen-examples.git
$cd videogen-examples

Then pick an example directory and follow its README. Each requires a VideoGen API key — get one at app.videogen.io/developers.

Source

All examples live in the video-gen/videogen-examples repo.