Advanced video generation with special effects capabilities and anime-optimized output, supporting multiple visual styles.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v5",
"input": {
"prompt": "An anime warrior charging through a battlefield with glowing energy sword, dramatic speed lines, vibrant colors, dynamic camera angles",
"duration": 5,
"aspect_ratio": "16:9",
"quality": "720p",
"style": "anime"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text description of the video to generate |
image | string | No | - | Image to use for the first frame of the video |
last_frame_image | string | No | - | Use to generate a video that transitions from the first image to the last image. Must be used with image. |
quality | string | No | 540p | Output resolution quality 360p540p720p1080p |
aspect_ratio | string | No | 16:9 | Output aspect ratio 16:99:161:1 |
duration | integer | No | 5 | Video duration in seconds 58 |
negative_prompt | string | No | - | Negative prompt to avoid certain elements in the video |
seed | integer | No | - | Random seed. Set for reproducible generation |
effect | string | No | None | Special effect to apply to the video. V5 supports effects. Does not work with last_frame_image. NoneLet's YMCA!Subject 3 FeverGhibli Live!Suit SwaggerMuscle Surge360ยฐ MicrowaveWarmth of JesusEmergency BeatAnything, RobotKungfu ClubMint in BoxRetro Anime PopVogue WalkMega DiveEvil Trigger |
There are 3 ways to provide files for the imagelast_frame_image parameters:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=pixverse/pixverse-v5" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "pixverse/pixverse-v5",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Dynamic anime-style action video
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v5",
"input": {
"prompt": "An anime warrior charging through a battlefield with glowing energy sword, dramatic speed lines, vibrant colors, dynamic camera angles",
"duration": 5,
"aspect_ratio": "16:9",
"quality": "720p",
"style": "anime"
}
}'Stylized 3D animation video
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "pixverse/pixverse-v5",
"input": {
"prompt": "A cute 3D animated robot waving hello in a futuristic garden, Pixar-style rendering, warm lighting, playful atmosphere",
"duration": 5,
"aspect_ratio": "1:1",
"quality": "1080p",
"style": "3d_animation"
}
}'POST /v1/predictions