Pinterest

The VideoGen AI Video API

The video generation API for developers. Create videos, images, voices, and avatars, or run end-to-end workflows via API or SDK.

Airbus
Salesforce
Crate & Barrel
Google
Amazon
Michigan
TikTok
Airbus
Salesforce
Crate & Barrel
Google
Amazon
Michigan
TikTok

Por que API VideoGen

VideoGen executa toda a sua pilha de mídia generativa, para que você possa se concentrar em construir algo que as pessoas querem.

Camada de roteamento inteligente

Cada solicitação é executada no melhor modelo de IA para o trabalho. Nós avaliamos modelos de destaque em cargas de trabalho reais de mais de 50 mil clientes. Servido a partir de uma rede global de computação de IA.

Infraestrutura de mídia gerenciada

Outputs are ready to embed, stream, or download with no extra setup. Built-in storage, transcoding, and global delivery are included.

Ferramentas e fluxos de trabalho flexíveis

One API for video, images, speech, and avatars. Call individual tools or run workflows like script-to-video or voiceover-to-video.

SDKs TypeScript e Python

@videogen/sdk no npm e videogen no PyPI. Totalmente tipado, auto-gerado a partir da nossa especificação OpenAPI.

Construído para automação

Webhooks e polling para pipelines de produção. Conecte o VideoGen ao seu CRM, CMS ou jobs agendados.

Fácil de integrar

Demo in 5 minutes, production-ready in 15: use the REST API, prebuilt SDKs, or our projetos de exemplo.

Comece
Apoiado porY CombinatorCombinator

Gere um vídeo com algumas linhas de código

Instale o SDK e comece a gerar vídeos imediatamente.

generate-video.ts
import { VideoGen, pollWorkflowRun } from "@videogen/sdk";

const vg = new VideoGen({ apiKey: "sk_videogen_live_..." });

const started = await vg.workflows.scriptToVideo({
  script:
    "Staying hydrated keeps your body and mind running at their best. Drinking enough water boosts your energy, focus, and mood. Keep a water bottle nearby and sip throughout the day.",
  visualStyle: {
    type: "AI_IMAGE",
    aiStyle: "loose watercolor illustration with visible brushstrokes and soft color bleeds",
  },
  visualPacing: "MEDIUM",
  quality: "HIGH",
  remixActions: [
    { type: "ENABLE_CAPTIONS" },
    {
      type: "CONVERT_IMAGES_TO_VIDEOS",
      motionPrompt: "slow cinematic push-in",
      muteOutputVideos: true,
      quality: "HIGH",
    },
  ],
});

const workflowRunId = started?.workflowRunId;
if (typeof workflowRunId !== "string") {
  throw new Error("Missing workflowRunId");
}
const run = await pollWorkflowRun({ client: vg, workflowRunId });
console.log(run.status, started?.projectUrl);
npm install @videogen/sdk

Pronto para construir?

VideoGen resolve os maiores problemas da produção de vídeos—complexidade, custo e tempo.
Garry TanGarry Tan CEO da Y Combinator