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 transitions between two frames using the Kling O1 Standard model. Provide start and end frame URLs.
| Property | Value |
|---|
| Provider | Kling Plus |
| Model | Kling O1 Standard |
| Capability | Start-End Frame to Video |
| Base Cost | 50,000 micro-cents/second ($0.050/sec) |
| Processing Time | ~240 seconds |
Request Body
Model slug. Use kling-plus/kling-o1-standard/start-end-frame-to-video for start-end frame to video generation.
Input parameters for start-end frame to video generation.
Text prompt describing the desired output (max 2500 characters).
URL of the end frame image.
Video duration in seconds. Default: 5. Options: 3, 4, 5, 6, 7, 8, 9, 10.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 50,000 micro-cents per second ($0.050/sec)
finalCost = baseCost × duration
| Factor | Option | Multiplier |
|---|
| Duration | 3 | 3x |
| 4 | 4x |
| 5 | 5x |
| 6 | 6x |
| 7 | 7x |
| 8 | 8x |
| 9 | 9x |
| 10 | 10x |
Default cost: 5 seconds = 50,000 × 5 = 250,000 micro-cents ($0.250)
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-plus/kling-o1-standard/start-end-frame-to-video",
"input": {
"prompt": "Smooth cinematic transition from a sunrise mountain peak to a starry night sky",
"image_url": "https://example.com/image.jpg",
"end_image_url": "https://example.com/end-image.jpg",
"duration": "5"
}
}'