Skip to main content
PixVerseSlowUltra

PixVerse V5

Advanced video generation with special effects capabilities and anime-optimized output, supporting multiple visual styles.

2400 credits
per video
Special effects capabilities
Anime-optimized output
Multiple visual styles (realistic, anime, 3D)
Up to 1080p resolution
Image-to-video support

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

llms.txt

Quick Start

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"
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text description of the video to generate
image_urlstringNo-Starting image URL for image-to-video
durationintegerNo5Video duration in seconds
aspect_ratiostringNo16:9Output aspect ratio
16:99:161:1
qualitystringNo540pOutput resolution quality
540p720p1080p
stylestringNo-Visual style preset
realisticanime3d_animation

How to Provide File Input

There are 3 ways to provide files for the image_url parameter:

Recommended

Direct Upload (Multipart)

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_url=@your_file.png"

Image URL

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_url": "https://example.com/image.jpg"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Anime Action Scene

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"
  }
}'

3D Character Animation

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"
  }
}'

Tips & Best Practices

1Use the 'anime' style for Japanese animation-inspired content
2Higher quality settings (1080p) produce sharper results but cost more
3Combine style presets with detailed prompts for best results
4The '3d_animation' style works great for Pixar-like content

Use Cases

Anime and animation content
Special effects videos
3D animation projects
Style-specific video content
Creative visual projects