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.
Generate a video that smoothly interpolates between a start frame and an end frame with Kling O1. Supports std/pro quality tiers and 5- or 10-second durations.
Property Value Provider Kling Model Kling O1 Capability Start-End Frame to Video Base Cost 70,000 micro-cents/second ($0.07/sec) Processing Time ~240 seconds
Request Body
Model slug. Use kling/kling-i2v-frames-o1/start-end-frame-to-video.
Input parameters for start-end frame video generation. Text description of the video to generate (max 2500 characters).
URL of the start frame image.
URL of the end frame image.
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.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 70,000 micro-cents per second ($0.07/sec)
finalCost = baseCost × duration × quality
Factor Option Multiplier Duration 55x 1010x Quality std1x pro1.5x
Default cost: 5 seconds, std quality = 70,000 × 5 × 1 = 350,000 micro-cents ($0.35)
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-o1/start-end-frame-to-video",
"input": {
"prompt": "The skyline transitions from sunrise to midday",
"start_frame_url": "https://example.com/image.jpg",
"end_frame_url": "https://example.com/image.jpg",
"quality": "std",
"duration": "5",
"aspect_ratio": "16:9"
}
}'