Motion Control
May 13, 2026
Table of contents
Drive a character image with motion extracted from a reference video. Upload a portrait (the character) and a short motion clip β PixVerse animates the character following the motion of the clip. Useful for transferring dance moves, gestures, or full-body action onto a still image.
- Upload the character image and the motion video using POST /files.
- PixVerse validates the character image before submission β if it cannot detect a clear person or animal subject, the request is rejected with 422.
- This endpoint does not accept a prompt β motion comes entirely from the reference video.
https://api.useapi.net/v2/pixverse/videos/motion-control
Request Headers
Authorization: Bearer {API token}
Content-Type: application/json
# Alternatively you can use multipart/form-data
# Content-Type: multipart/form-data
API tokenis required, see Setup useapi.net for details.
Request Body
{
"email": "Optional PixVerse API account email",
"frame_1_path": "upload/a1b2c3d4-1111-2222-3333-character000001.webp",
"video_1_path": "upload/e5f6a7b8-4444-5555-6666-motionvideo0001.mp4",
"quality": "720p",
"off_peak_mode": false,
"replyUrl": "Place your call back URL here",
"replyRef": "Place your reference here"
}
-
emailis optional, if not specified API will randomly select account from available accounts. -
frame_1_pathis required β character image path uploaded via POST /files. Must contain a clear subject (person or animal); ambiguous or empty images will be rejected with 422. -
video_1_pathis required β motion reference video path uploaded via POST /files.Motion video limits (enforced by PixVerse upstream):
- Duration: 1β30 sec
- File size: β€ 50 MB
- Dimensions: β€ 1920 Γ 1920 px
-
modelis optional. Currently only one engine is supported. Supported values:v5.6(default). -
qualityis optional. Video quality. Supported values:360p,540p,720p(default). -
off_peak_modeis optional. Set totrueto generate during low-demand periods at a reduced credit cost. Discount varies by subscription plan: Pro 30% off, Premium 50% off, Ultra unlimited free. Results are usually delivered within 24 hours. Off-Peak generations are not tracked by the scheduler, donβt count toward concurrent-job limits, and thereplyUrlwebhook is not called β use GET videos to retrieve results. Supported values:false(default),true. -
replyUrlis optional. This is the preferred and most optimal way to receive results quickly β the API polls every 10 seconds and will call the providedreplyUrlonce the PixVerse video is completed or failed. Maximum length 1024 characters. We recommend using sites like webhook.site to test callback URL functionality. -
replyRefis optional, place here your reference id which will be stored and returned along with this PixVerse video response / result. Maximum length 1024 characters. -
maxJobsis optional, if not specified value from selected accounts/email will be used. Valid range: 1β¦8 It should not exceed the number of concurrent generations supported by your account subscription plan.
Responses
-
Use the returned
video_idto retrieve video status and results using GET /videos. Locate the video in the response array and check if the fieldvideo_status_finalistrueorvideo_status_nameisCOMPLETED. The fieldurlwill contain the generated video link.If you specify the optional parameter
replyUrl, the API will call the providedreplyUrlwith video progress updates until the video is complete or fails.{ "video_id": "user:<userid>-pixverse:<email>-video:<number>" } -
{ "error": "<Error message>" } -
{ "error": "Unauthorized" } -
{ "error": "All Credits have been used up. Please upgrade your membership or purchase credits." } -
Character image was rejected β PixVerse could not detect a clear person or animal subject.
{ "error": "Character image was rejected β upload a clear photo with a person or animal as the subject" } -
Wait in a loop for at least 10..30 seconds and retry again.
{ "error": "Account <email> is busy executing <maxJobs> tasks." "All configured accounts are running at maximum capacity." }{ "error": "Reached the limit for concurrent generations." } -
596 Pending mod message
Your PixVerse.ai account has a pending error. Most likely, you changed your account password or your PixVerse.ai account was placed on hold. Once the issue is resolved, update your account to clear the error by executing POST accounts/email before making any new API calls.
{ "error": "Your PixVerse account has pending error." "Please address this issue at https://useapi.net/docs/api-pixverse-v2/post-pixverse-accounts-email before making any new API calls." }
Model
{ // TypeScript, all fields are optional
video_id: string
error: string
}
Examples
-
curl -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer β¦" \ -X POST "https://api.useapi.net/v2/pixverse/videos/motion-control" \ -d '{"frame_1_path": "upload/β¦webp", "video_1_path": "upload/β¦mp4", "quality": "720p"}' -
const frame_1_path = "provide path of uploaded character image via POST /files"; const video_1_path = "provide path of uploaded motion video via POST /files"; const apiUrl = `https://api.useapi.net/v2/pixverse/videos/motion-control`; const token = "API token"; const data = { method: 'POST', headers: { 'Authorization': `Bearer ${token}`, 'Content-Type': 'application/json' } }; data.body = JSON.stringify({ frame_1_path, video_1_path, quality: '720p' }); const response = await fetch(apiUrl, data); const result = await response.json(); console.log("response", {response, result}); -
import requests frame_1_path = "provide path of uploaded character image via POST /files" video_1_path = "provide path of uploaded motion video via POST /files" apiUrl = f"https://api.useapi.net/v2/pixverse/videos/motion-control" token = "API token" headers = { "Content-Type": "application/json", "Authorization" : f"Bearer {token}" } body = { "frame_1_path": f"{frame_1_path}", "video_1_path": f"{video_1_path}", "quality": "720p" } response = requests.post(apiUrl, headers=headers, json=body) print(response, response.json())