v1.1.8 — Account lookup, run history, opaque project ids, and six new remix actions
This release adds endpoints for verifying your API key and listing past workflow runs and tool executions, fixes project and export ids so responses match the documented vg_proj_... and vg_expo_... format, and ships six new remix actions plus a CLI and MCP server for agents and scripts.
GET /v1/me: return the account and team behind the API key making the request (apiKeyId,apiKeyNickname,email,displayName,teamId). Takes no parameters. Use it as a connection test to confirm a key is valid before wiring up integrations.GET /v1/workflows/runs: list workflow runs started via the API, most recently created first. Cursor-paginated; acceptslimit,cursor, andselfOnly(same contract asGET /v1/projects).GET /v1/tools/executions: list tool executions started via the API, most recently created first. Cursor-paginated; acceptslimit,cursor, andselfOnly.GET /v1/resources/languages: list the languages a project can be translated into. Pass alanguageCodefrom the response to theTRANSLATE_PROJECTremix action. Returns the full catalogue in one response (not paginated).- Six new remix actions:
REGENERATE_IMAGES(re-generate every eligible image in a project),UPSCALE_ASSETS(upscale images and videos in place),CHANGE_NARRATOR(swap the voiceover to a different TTS voice),SHUFFLE_STOCK_VISUALS(replace stock footage clips with fresh matches),GENERATE_MUSIC(generate and set a background music track), andTRANSLATE_PROJECT(translate every piece of text and optionally re-narrate voiceovers in a target language). See Remix actions. - Fix: project and export ids now use the documented opaque format. Responses from
GET /v1/projects, workflow runs, remix calls, and export endpoints now returnvg_proj_...project ids andvg_expo_...export ids instead of raw UUIDs. Path parameters accept both the new opaque ids and legacy raw UUIDs stored from earlier responses. - VideoGen CLI: install
@videogen/cli(npm install -g @videogen/cli) for a self-contained binary generated from the same OpenAPI spec as the SDKs. See CLI. - MCP server for AI agents: install
@videogen/mcpand point Cursor, Claude Desktop, or any MCP client at it to run the full VideoGen API from an agent session (workflows, media tools, files, exports, and remix). See Use with AI agents.