Documentation Index Fetch the complete documentation index at: https://developer.pixelbyte.app/docs/llms.txt
Use this file to discover all available pages before exploring further.
Animate a single input image into a high-quality video clip with Kling I2V Frames V2.5. Choose between standard and pro quality, multiple aspect ratios, and 5 or 10 second durations.
Property Value Provider Kling Model Kling I2V Frames V2.5 Capability Image to Video Base Cost 50,000 micro-cents/second ($0.05/sec) Processing Time ~240 seconds
Request Body
Model slug. Use kling/kling-i2v-frames-v25/image-to-video.
Input parameters for image-to-video generation. Text description guiding the motion (max 2500 characters).
URL of the input image to animate.
Generation quality. Default: std. Options: std, pro.
Video duration in seconds. Default: 5. Options: 5, 10.
Video aspect ratio. Default: 16:9. Options: 16:9, 9:16, 1:1.
Optional random seed for reproducible results.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 50,000 micro-cents per second ($0.05/sec)
finalCost = baseCost × quality × duration
Factor Option Multiplier Quality std1x pro1.5x Duration 55x 1010x
Default cost: std quality, 5 seconds = 50,000 × 1 × 5 = 250,000 micro-cents ($0.25)
Response
Unique identifier for the submitted job.
Initial job status. Always "pending" on successful submission.
ISO 8601 timestamp of the estimated completion time.
The cost of the job in micro-cents.
Code Examples
curl -X POST https://api.muvi.video/v1/jobs/submit \
-H "Authorization: Bearer $PIXELBYTE_API_KEY " \
-H "Content-Type: application/json" \
-d '{
"model": "kling/kling-i2v-frames-v25/image-to-video",
"input": {
"prompt": "A surfer rides a glassy wave at golden hour",
"image_url": "https://example.com/image.jpg",
"quality": "std",
"duration": "5",
"aspect_ratio": "16:9"
}
}'