PixVerse v4 | Effect
Apply visual effects to images and generate videos using PixVerse v4 | Effect. Supports configurable duration, quality control.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v4-effect",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/your-image.jpg"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
duration |
integer |
5 |
|
image_url |
string |
|
|
image_urls |
array |
|
|
motion_mode |
string |
normal |
|
quality |
string |
540p |
Options: 360p, 540p, 720p, 1080p |
template_id |
string |
30523675191680 |
Pixverse Effect. Options: AI!", , , , , , , , , , , , , , , , , , , , |
Examples
Apply visual effect:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v4-effect",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/your-image.jpg"
}
}'
Different effect style:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v4-effect",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/your-image.jpg",
"duration": 8,
"quality": "1080p",
"motion_mode": "fast"
}
}'
Related Models
Documentation
1---2name: pixverse-v4-effect3description: PixVerse v4 | Effect. Apply visual effects to images and generate videos using PixVerse v4 | Effect. Triggers: pixverse, video effects, video generation4---56# PixVerse v4 | Effect78Apply visual effects to images and generate videos using PixVerse v4 | Effect. Supports configurable duration, quality control.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "pixverse-v4-effect",20 "version": "0.0.1",21 "input": {22 "image_url": "https://example.com/your-image.jpg"23 }24 }'25```2627## Parameters2829| Parameter | Type | Default | Description |30|-----------|------|---------|-------------|31| `duration` | integer | 5 | |32| `image_url` | string | | |33| `image_urls` | array | | |34| `motion_mode` | string | normal | |35| `quality` | string | 540p | Options: `360p`, `540p`, `720p`, `1080p` |36| `template_id` | string | 30523675191680 | Pixverse Effect. Options: `AI!"`, `, `, `, `, `, `, `, `, `, `, `, `, `, `, `, `, `, `, `, ` |3738## Examples3940**Apply visual effect:**41```bash42curl -X POST https://api.eachlabs.ai/v1/prediction \43 -H "Content-Type: application/json" \44 -H "X-API-Key: $EACHLABS_API_KEY" \45 -d '{46 "model": "pixverse-v4-effect",47 "version": "0.0.1",48 "input": {49 "image_url": "https://example.com/your-image.jpg"50 }51 }'52```5354**Different effect style:**55```bash56curl -X POST https://api.eachlabs.ai/v1/prediction \57 -H "Content-Type: application/json" \58 -H "X-API-Key: $EACHLABS_API_KEY" \59 -d '{60 "model": "pixverse-v4-effect",61 "version": "0.0.1",62 "input": {63 "image_url": "https://example.com/your-image.jpg",64 "duration": 8,65 "quality": "1080p",66 "motion_mode": "fast"67 }68 }'69```7071## Related Models7273- [PixVerse v4.5 | Effect](../pixverse-v4-5-effect/) - Apply visual effects to images and generate videos using PixVerse v4.5 | Effect.74- [PixVerse v4.5 | Transition](../pixverse-v4-5-transition/) - Create smooth video transitions between images using PixVerse v4.5 | Transition.75- [PixVerse v4.5 | Text to Video](../pixverse-v4-5-text-to-video/) - Generate videos from text descriptions using PixVerse v4.5 | Text to Video.7677## Documentation7879- [each::labs Docs](https://docs.eachlabs.ai)80- [API Reference](https://docs.eachlabs.ai/api/overview)