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.
Continue an existing video by generating new footage that follows on from the source clip with Kling Extend 3.0. Supports std/pro quality tiers and 5- or 10-second extensions.
Property Value Provider Kling Model Kling Extend 3.0 Capability Extend Video Base Cost 70,000 micro-cents/second ($0.07/sec) Processing Time ~240 seconds
Request Body
Model slug. Use kling/kling-extend-v3/extend-video.
Input parameters for video extension. URL of the source video to extend.
Optional identifier of an existing Kling work to extend.
Text description guiding the extension (max 2500 characters).
Text describing content to avoid (max 1000 characters).
Generation quality. Default: std. Options: std, pro.
Extension duration in seconds. Default: 5. Options: 5, 10.
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-extend-v3/extend-video",
"input": {
"video_url": "https://example.com/video.mp4",
"prompt": "The character keeps walking forward into the open square",
"quality": "std",
"duration": "5"
}
}'