1. Guides
PixVerse Platform Docs
  • Overview
    • Introduce to PixVerse Platform
    • Quick Start
    • How does the API work?
    • How to get API key?
    • PixVerse-api-llm.txt
  • Models
    • Model Overview
    • Capability matrix
    • C1
    • V6
    • Pricing
  • Guides
    • Get video generation status
    • Check account balance
    • Subscribe API plans
    • Text-to-video
    • Image-to-video
    • Video Effects
    • Image template
    • Transition(First-last frame Feature)
    • Extend
    • Modify
    • Sound effects
    • Speech(Lip sync)
    • Lip sync TTS speaker list
    • Fusion(Reference to video)
    • Restyle
    • Multi-transition
    • Swap
    • Motion Control(Mimic)?
    • Webhook integration
  • API Reference
    • Rate limit
    • Video Generation
      • Text-to-Video generation
      • Image-to-Video generation
      • Template video generation
      • Transition(First-last frame) generation
      • Speech(Lipsync) generation
      • Get Speech(Lipsync) tts list
      • Fusion(reference to video) generation
      • Multi-transition video generation
      • Restyle video generation
      • Restyle effect list
      • Swap mask generation
      • Swap video generation
      • Sound effect generation
      • Extend generation
      • Get Video Generation Status
      • Motion Control (Mimic) generation
      • Modify generation
    • Image generation
      • Image template generation
      • Get Image generation
    • Upload Image
    • Get user credit balance
    • Upload Video&audio
  • Troubleshooting
    • FAQ
    • Common errors and Solutions
    • Error codes
  • Resources
    • Support
    • Change Logs
    • PixVerse MCP
    • Term of Service
    • Privacy policy
  1. Guides

Video Effects

Effects is PixVerse's signature feature, allowing you to transform your images/creative ideas into stunning effects with just one click

Step 1 : Get Effect ID and Details#

Click Effect Center
image.png
Click the effect you selected and copy the ID
image.png

Step 2 : Fill in template_id in generation parameters to generate video#

https://docs.platform.pixverse.ai/image-to-video-generation-13016633e0
Taking image-to-video or extend as an example, you need to add template_id and prompt to the parameters. The Prompt can be the effect name
If you use text-to-video, we will reference the Prompt and generate the special effect. If you use image-to-video, we will generate the special effect based on the uploaded image.
Example body:
{
  "duration": 5,
  "img_id": 0,
  "model": "v4.5",
  "motion_mode": "normal",
  "negative_prompt": "string",
  "prompt": "Muscle Surge",
  "quality": "540p",
  "seed": 0,
  "template_id": 308621408717184,
}
For multi-image templates, use img_ids; the required number of images is shown in the Effect Center.
image.png
{
  "duration": 5,
  "img_ids": [0,0]
  "model": "v4.5",
  "motion_mode": "normal",
  "negative_prompt": "string",
  "prompt": "Muscle Surge",
  "quality": "540p",
  "seed": 0,
  "template_id": 308621408717184,
}
Previous
Image-to-video
Next
Image template