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.
Apply fast video edits using a natural-language instruction with the Kling O1 Pro model — optimized for speed.
| Property | Value |
|---|
| Provider | Kling Plus |
| Model | Kling O1 Pro |
| Capability | Video Edit (Fast) |
| Base Cost | 30,000 micro-cents/second ($0.030/sec) |
| Processing Time | ~120 seconds |
Request Body
Model slug. Use kling-plus/kling-o1-pro/video-edit-fast for video edit (fast) generation.
Input parameters for video edit (fast) generation.
Text prompt describing the desired output (max 2500 characters).
Reference images (max 4).
Keep the audio track from the source video. Default: true.
Video aspect ratio. Options: 16:9, 9:16, 1:1.
HTTPS URL to receive a webhook notification when the job completes or fails.
Pricing
Base cost: 30,000 micro-cents per second ($0.030/sec)
finalCost = baseCost (flat per-video)
Cost: flat 30,000 micro-cents ($0.030) per video.
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-pro/video-edit-fast",
"input": {
"prompt": "Add cinematic color grading with teal and orange tones",
"video_url": "https://example.com/video.mp4",
"aspect_ratio": "16:9"
}
}'