Video PixVerse

PixVerse API

通过 RunAPI 使用 PixVerse API,配套 model skill、统一认证和按需计费。

runapi.ai
curl -X POST https://runapi.ai/api/v1/pixverse/edit_video \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "pixverse-v6",
  "video_url": "https://cdn.runapi.ai/public/samples/video.mp4",
  "prompt": "生成一段 10 秒的视频:一艘纸船顺着雨水灌满的街道排水沟漂流,镜头贴着水面跟拍。"
}'
import { PixverseClient } from "@runapi.ai/pixverse";

const client = new PixverseClient();
const result = await client.editVideo.run({
    model: "pixverse-v6",
    video_url: "https://cdn.runapi.ai/public/samples/video.mp4",
    prompt: "生成一段 10 秒的视频:一艘纸船顺着雨水灌满的街道排水沟漂流,镜头贴着水面跟拍。",
});
require "runapi/pixverse"

client = RunApi::Pixverse::Client.new
result = client.edit_video.run(
    model: "pixverse-v6",
    video_url: "https://cdn.runapi.ai/public/samples/video.mp4",
    prompt: "生成一段 10 秒的视频:一艘纸船顺着雨水灌满的街道排水沟漂流,镜头贴着水面跟拍。"
)
npx skills add runapi-ai/pixverse -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp

# Codex
codex plugin install runapi-mcp@agents

# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
@runapi.ai/pixverse v1
概览

关于 PixVerse

PixVerse V6 通过同一个模型版本覆盖五种视频能力:根据文本提示生成视频、让单张图片动起来、用最多七张参考图引导画面、在首尾两帧之间做转场插值,或续写一段已完成的视频。片段时长 1 到 15 秒,分辨率覆盖 360p 到 1080p,并可选择同步音频。

提供方
PixVerse
模态
Video
定价

定价

失败的生成不计费
Image to video
$0.04-$0.19 / second
Enable audio: Enabled · Output resolution: 360p $0.06
Enable audio: Enabled · Output resolution: 540p $0.07
Enable audio: Enabled · Output resolution: 720p $0.10
Enable audio: Enabled · Output resolution: 1080p $0.18
Enable audio: Disabled · Output resolution: 360p $0.04
Enable audio: Disabled · Output resolution: 540p $0.06
Enable audio: Disabled · Output resolution: 720p $0.07
Enable audio: Disabled · Output resolution: 1080p $0.14
Edit video
$0.04-$0.19 / second
Enable audio: Enabled · Output resolution: 360p $0.06
Enable audio: Enabled · Output resolution: 540p $0.07
Enable audio: Enabled · Output resolution: 720p $0.10
Enable audio: Enabled · Output resolution: 1080p $0.18
Enable audio: Disabled · Output resolution: 360p $0.04
Enable audio: Disabled · Output resolution: 540p $0.06
Enable audio: Disabled · Output resolution: 720p $0.07
Enable audio: Disabled · Output resolution: 1080p $0.14
Text to video
$0.04-$0.19 / second
Enable audio: Enabled · Output resolution: 360p $0.06
Enable audio: Enabled · Output resolution: 540p $0.07
Enable audio: Enabled · Output resolution: 720p $0.10
Enable audio: Enabled · Output resolution: 1080p $0.18
Enable audio: Disabled · Output resolution: 360p $0.04
Enable audio: Disabled · Output resolution: 540p $0.06
Enable audio: Disabled · Output resolution: 720p $0.07
Enable audio: Disabled · Output resolution: 1080p $0.14
Transition video
$0.04-$0.19 / second
Enable audio: Enabled · Output resolution: 360p $0.06
Enable audio: Enabled · Output resolution: 540p $0.07
Enable audio: Enabled · Output resolution: 720p $0.10
Enable audio: Enabled · Output resolution: 1080p $0.18
Enable audio: Disabled · Output resolution: 360p $0.04
Enable audio: Disabled · Output resolution: 540p $0.06
Enable audio: Disabled · Output resolution: 720p $0.07
Enable audio: Disabled · Output resolution: 1080p $0.14
Extend video
$0.04-$0.19 / second
Enable audio: Enabled · Output resolution: 360p $0.06
Enable audio: Enabled · Output resolution: 540p $0.07
Enable audio: Enabled · Output resolution: 720p $0.10
Enable audio: Enabled · Output resolution: 1080p $0.18
Enable audio: Disabled · Output resolution: 360p $0.04
Enable audio: Disabled · Output resolution: 540p $0.06
Enable audio: Disabled · Output resolution: 720p $0.07
Enable audio: Disabled · Output resolution: 1080p $0.14
规格

技术细节

模型 ID pixverse-v6
提供方 PixVerse
模态 video
任务类型 asynchronous
计费单位 second
API 端点 /api/v1/pixverse/edit_video
商用许可 允许商用
收录状态 运行中
Agent 集成

通过 Agent 运行 PixVerse

工作流程

开始使用 PixVerse

  1. 选择模型

    根据输出类型、质量要求和延迟目标选择模型与变体。

  2. 配置

    设置 RunAPI key,并在代码工作区安装对应 model skill。

  3. 调用

    按 skill 里的说明,把模型能力接入到你的应用里。

  4. 接收

    按 task ID 轮询、在支持时使用流式,或处理 webhook 回调。

背景

PixVerse API 是什么?

PixVerse V6 通过 RunAPI 提供文生视频、图生视频、参考图引导编辑、转场和续写能力。所有五个端点共用同一个模型版本,因此同一个密钥和计费模型适用于全部能力。

提供方
PixVerse
查看全部 →
模态
Video
浏览模型 →

为什么用 RunAPI 调用 PixVerse API

统一认证,接入所有提供方

一把 RunAPI key 解锁整个模型目录。无需为每家提供方单独建账户。

统一的定价与账单

USD 按次定价,按月结算。失败的生成不计费。

Schema 优先的 SDK

Typed schema 和接入说明已打包进 model skill,让实现从正确契约开始。

PixVerse 常见问题

PixVerse V6 提供哪些视频能力?

共五种——文生视频、图生视频、参考图引导编辑、转场,以及对已完成结果的续写。这五种能力均使用同一个模型版本。

PixVerse V6 生成的视频能有多长?

每次请求 1 到 15 秒,通过 duration_seconds 设置。如需在单次生成之外继续延长已完成的结果,可使用续写端点。

支持哪些分辨率和宽高比?

支持 360p、540p、720p 和 1080p,覆盖从超宽到竖版共八种宽高比。

PixVerse V6 能同时生成音频吗?

可以——将 enable_audio 设为开启即可在生成视频的同时生成同步音频,默认关闭。

一次生成最多可以用多少张参考图引导?

参考图引导端点接受 1 到 7 张有先后顺序的公开图片 URL。

应该从哪个变体开始?

选满足质量要求的最便宜变体。多数团队从 fast 起步,生产时升级到 pro。

相似模型

如果喜欢 PixVerse API,也可以试试这些

立即体验 PixVerse API。

Endpoints

  • image_to_video
  • edit_video
  • text_to_video
  • transition_video
  • extend_video

同类

同提供方

文档