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

Perché VideoGen API

VideoGen gestisce l'intero stack multimediale generativo, permettendoti di concentrarti sulla creazione di qualcosa che le persone desiderano.

Strato di routing intelligente

Ogni richiesta viene eseguita sul miglior modello AI per il lavoro. Confrontiamo i modelli di punta su carichi di lavoro reali provenienti da oltre 50k clienti. Servito da una rete globale di calcolo AI.

Infrastruttura media gestita

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

Strumenti e flussi di lavoro flessibili

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

SDK TypeScript e Python

@videogen/sdk su npm e videogen su PyPI. Completamente tipizzato, generato automaticamente dalla nostra specifica OpenAPI.

Creato per l'automazione

Webhook e polling per pipeline di produzione. Collega VideoGen al tuo CRM, CMS o lavori programmati.

Facile da integrare

Demo in 5 minutes, production-ready in 15: use the REST API, prebuilt SDKs, or our progetti di esempio.

Inizia
Sostenuto daY CombinatorCombinator

Genera un video con poche righe di codice

Installa l'SDK e inizia a generare video immediatamente.

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 a costruire?

VideoGen risolve i principali problemi della produzione video: complessità, costo e tempo.
Garry TanGarry Tan CEO di Y Combinator