1. Getting started
PixVerse Platform Docs
  • C1 released!
  • V6 released!
  • Learn about PixVerse Platform
    • Introduce to PixVerse Platform
    • Quick Start
    • PixVerse-api-llm.txt
  • 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 Image template?
    • 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 use Restyle?
    • How to use Multi-transition?
    • How to use Swap?
    • How to use Mimic?
    • How to use Modify?
    • How to get video generation status?
    • How to use Webhook
  • API Reference
    • API Parameter Description
    • 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
      • Mimic generation
      • Modify generation
    • Image generation
      • Image template generation
      • Get Image generation
    • Upload Image
      POST
    • Upload Video&audio
      POST
    • Get user credit balance
      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. Getting started

How to use 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
How to use Image-to-video
Next
How to use Image template?