PixVerse Platform Docs
  1. API Reference
PixVerse Platform Docs
  • Learn about PixVerse Platform
    • Introduce to PixVerse Platform
    • Quick Start
  • Getting started
    • How does the API work?
    • How to get API key?
    • How to check account balance?
    • How to subscribe API plans?
    • How to use Text-to-video
    • How to use Image-to-video
    • How to use Effects?
    • How to use Transition(First-last frame Feature)
    • How to use Speech(Lip sync)?
    • Lip sync TTS speaker list
    • How to use Extend?
    • How to use Sound effects?
    • How to use Fusion(Reference to video)?
    • How to get video generation status?
  • API Reference
    • API Parameter Description
    • Get user credit balance
      GET
    • Upload Image
      POST
    • Text-to-Video generation
      POST
    • Image-to-Video generation
      POST
    • Transition(First-last frame) generation
      POST
    • Upload Video&audio
      POST
    • Speech(Lipsync) generation
      POST
    • Get Speech(Lipsync) tts list
      GET
    • Extend generation
      POST
    • Sound effect generation
      POST
    • Fusion(reference to video) generation
      POST
    • Get Video Generation Status
      GET
  • Trouble Shooting
    • Common errors and Solutions
    • Error codes
    • FAQ
  • Resources
    • Model & Pricing
    • Rate limit
    • Support
    • Change Logs
    • Term of Service
    • Privacy policy
  • PixVerse Tools
    • PixVerse MCP
  1. API Reference

Fusion(reference to video) generation

POST
/openapi/v2/video/fusion/generate
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app-api.pixverse.ai/openapi/v2/video/fusion/generate' \
--header 'API-KEY: your-api-key' \
--header 'Ai-trace-id: your-Ai-trace-id' \
--header 'Content-Type: application/json' \
--data-raw '{
  "image_references": [
    {
      "type": "subject",
      "img_id": 0,
      "ref_name": "dog"
    },
    {
      "type": "background",
      "img_id": 0,
      "ref_name": "room"
    }
  ],
  "prompt": "@dog plays at @room",
  "model": "v4.5",
  "duration": 5,
  "quality": "540p",
  "aspect_ratio": "16:9",
  "seed": 123456789
}'
Response Response Example
{}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Previous
Sound effect generation
Next
Get Video Generation Status