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 conditioned on reference images and/or a reference video using the Kling O1 Standard model.
| Property | Value |
|---|
| Provider | Kling Plus |
| Model | Kling O1 Standard |
| Capability | Reference 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/reference-to-video for reference to video generation.
Input parameters for reference to video generation.
Text prompt describing the desired output (max 2500 characters).
Reference images (max 10).
Video duration in seconds. Default: 5. Options: 3, 4, 5, 6, 7, 8, 9, 10.
Keep the audio track from the source video. Default: true.
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/reference-to-video",
"input": {
"prompt": "Recreate the reference scene with warmer lighting and a slow dolly-in",
"video_url": "https://example.com/video.mp4",
"duration": "5"
}
}'