What’s new in the VideoGen API. Each entry below covers a single release window with breaking changes, new endpoints, fixes, and SDK updates.
- Subscribe to releases via the RSS feed.
- For machine-readable history, fetch each entry as Markdown by appending
.mdto its URL (for example, /changelog/2026/5/5.md). - For the complete documentation index, see /llms.txt.
v0.0.25 – v0.0.35
- Breaking: Consolidated image and video generation into two tool endpoints:
POST /v1/tools/generate-image(text and/or reference images) andPOST /v1/tools/generate-video-clip(text prompt, reference images, and/or a source video). Replaces the separateprompt-to-image,image-to-image,prompt-to-video-clip,image-to-video-clip, andvideo-to-video-cliproutes. Other route renames:prompt-to-sound-effect→generate-sound-effect,audio-to-avatar-clip→generate-avatar,generate-tts→text-to-speech,remove-image-bg→remove-image-background,remove-video-bg→remove-video-background. - Watermark: New optional
watermarkModeon generation requests (AUTO,VIDEO_GEN,NONE).NONErequires the Production API add-on; otherwise the API returns a documented error. - Files:
POST /v1/files/{fileId}/archivearchives a file (setsarchived_at); archived files are omitted from list results. - Fix:
generate-imageandgenerate-video-clipexecutions now apply referenceimageFileIds/videoFileIdinputs end-to-end (previously ignored in some paths). - SDKs & examples: Example apps publishing flow, SDK custom-helper layout under language packages, TypeScript-based SDK generate/publish/validate scripts, and an Examples page in the docs.
- Agent / LLM docs: Expanded
llms.txtand<llms-only>parity so markdown exports include the same examples as tabbed guide pages (REST overview, webhook payloads, changelog, and key guides). - Agent / LLM docs: Fixed
llms.txtto use doc paths (/rest-api-reference/...,/webhook-events/webhook-events/...), list every sitemap page (including Examples and archive-file), remove non-doc same-origin links that broke agent checks, and setdynamic-snippets/ai-examplestofalseso HTML and markdown exports stay aligned for API reference pages.