Pika v1.5 | Effects
Apply creative visual effects to images using Pika v1.5. Choose from a wide range of fun and dramatic effects like Explode, Melt, Inflate, Squish, Dissolve, and many more to bring still images to life as animated videos.
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": "pika-v-1-5-effects",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/portrait.jpg",
"pikaffect": "Explode",
"prompt": "dramatic explosion with debris"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| image_url |
string |
- |
URL of the input image |
| negative_prompt |
string |
- |
Text describing what to avoid in the output |
| pikaffect |
string |
Squish |
Effect to apply. Options: Cake-ify, Crumble, Crush, Decapitate, Deflate, Dissolve, Explode, Eye-pop, Inflate, Levitate, Melt, Peel, Poke, Squish, Ta-da, Tear |
| prompt |
string |
- |
Text prompt to guide the effect |
| seed |
integer |
- |
Random seed for reproducible results |
Examples
Melt effect on a sculpture:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pika-v-1-5-effects",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/ice-sculpture.jpg",
"pikaffect": "Melt",
"prompt": "slowly melting into a puddle"
}
}'
Inflate effect on a character:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pika-v-1-5-effects",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/cartoon-character.png",
"pikaffect": "Inflate",
"prompt": "inflating like a balloon",
"seed": 12345
}
}'
Cake-ify effect on an object:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pika-v-1-5-effects",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/sneaker.jpg",
"pikaffect": "Cake-ify",
"prompt": "turning into a delicious cake"
}
}'
Related Models
Documentation
1---2name: pika-v-1-5-effects3description: Pika v1.5 | Effects. Apply creative visual effects to images using Pika v1.5 AI. Transform images with effects like explode, melt, inflate, squish, and more. Triggers: pika effects, pikaffect, image effects, creative effects, explode effect, melt effect, inflate effect, pika v1.54---56# Pika v1.5 | Effects78Apply creative visual effects to images using Pika v1.5. Choose from a wide range of fun and dramatic effects like Explode, Melt, Inflate, Squish, Dissolve, and many more to bring still images to life as animated videos.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": "pika-v-1-5-effects",20 "version": "0.0.1",21 "input": {22 "image_url": "https://example.com/portrait.jpg",23 "pikaffect": "Explode",24 "prompt": "dramatic explosion with debris"25 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| image_url | string | - | URL of the input image |34| negative_prompt | string | - | Text describing what to avoid in the output |35| pikaffect | string | Squish | Effect to apply. Options: `Cake-ify`, `Crumble`, `Crush`, `Decapitate`, `Deflate`, `Dissolve`, `Explode`, `Eye-pop`, `Inflate`, `Levitate`, `Melt`, `Peel`, `Poke`, `Squish`, `Ta-da`, `Tear` |36| prompt | string | - | Text prompt to guide the effect |37| seed | integer | - | Random seed for reproducible results |3839## Examples4041**Melt effect on a sculpture:**42```bash43curl -X POST https://api.eachlabs.ai/v1/prediction \44 -H "Content-Type: application/json" \45 -H "X-API-Key: $EACHLABS_API_KEY" \46 -d '{47 "model": "pika-v-1-5-effects",48 "version": "0.0.1",49 "input": {50 "image_url": "https://example.com/ice-sculpture.jpg",51 "pikaffect": "Melt",52 "prompt": "slowly melting into a puddle"53 }54 }'55```5657**Inflate effect on a character:**58```bash59curl -X POST https://api.eachlabs.ai/v1/prediction \60 -H "Content-Type: application/json" \61 -H "X-API-Key: $EACHLABS_API_KEY" \62 -d '{63 "model": "pika-v-1-5-effects",64 "version": "0.0.1",65 "input": {66 "image_url": "https://example.com/cartoon-character.png",67 "pikaffect": "Inflate",68 "prompt": "inflating like a balloon",69 "seed": 1234570 }71 }'72```7374**Cake-ify effect on an object:**75```bash76curl -X POST https://api.eachlabs.ai/v1/prediction \77 -H "Content-Type: application/json" \78 -H "X-API-Key: $EACHLABS_API_KEY" \79 -d '{80 "model": "pika-v-1-5-effects",81 "version": "0.0.1",82 "input": {83 "image_url": "https://example.com/sneaker.jpg",84 "pikaffect": "Cake-ify",85 "prompt": "turning into a delicious cake"86 }87 }'88```8990## Related Models9192- [Cartoonify V2](../cartoonify-v2/) - Convert images to cartoon style93- [Google Veo 3](../veo-3/) - Text-to-video generation94- [PixVerse v4.5 | Extend](../pixverse-v4-5-extend/) - Extend video duration9596## Documentation9798- [each::labs Docs](https://docs.eachlabs.ai)99- [API Reference](https://docs.eachlabs.ai/api/overview)