Kuaishou · video model
Kling v2.6 Motion Control Standard API
Use the Kling v2.6 Motion Control Standard API for hosted AI video generation with model-aware inputs, asynchronous jobs, and MakeInfluencer credits.
Endpoint overview
https://www.makeinfluencer.ai/api/v1/models/kling_v26_motion_control_std/generationsModel ID
kling_v26_motion_control_stdTypical time
~90s
Sample quote
17,544 credits
The displayed price is input-specific
Create a generation
Send the model fields inside input. The request returns HTTP 202 with an owned generation ID.
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/kling_v26_motion_control_std/generations \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Idempotency-Key: kling_v26_motion_control_std-001" \
--header "Content-Type: application/json" \
--data '{
"input": {
"startFrameUrl": "https://example.com/x.jpg",
"videoUrl": "https://example.com/x.mp4",
"characterOrientation": "image",
"keepOriginalSound": true,
"durationSeconds": 5
}
}'Model parameters
| Field | Type | Default | Accepted values |
|---|---|---|---|
startFrameUrlrequired | text | — | — |
videoUrlrequired | text | — | — |
shot_type | enum | customize | customize, intelligent |
element_list | imageArray | — | Up to 3 items |
element_id | text | — | — |
characterOrientation | enum | image | image, video |
prompt | text | — | — |
negativePrompt | text | — | — |
keepOriginalSound | boolean | true | — |
durationSecondsUse 3–10 seconds for image orientation or up to 30 seconds for video orientation. | number | 5 | 3 – 30 |
The same contract is available fromGET /models/kling_v26_motion_control_std for server-side validation and dynamic tooling.
Preview credits
curl --request POST \
https://www.makeinfluencer.ai/api/v1/models/kling_v26_motion_control_std/preview-credits \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"input": {
"startFrameUrl": "https://example.com/x.jpg",
"videoUrl": "https://example.com/x.mp4",
"characterOrientation": "image",
"keepOriginalSound": true,
"durationSeconds": 5
}
}'A valid response returns the exact credit cost and pricing description. The dashboard, REST API, and MCP use one balance at the same model price.
Poll the result
curl \
https://www.makeinfluencer.ai/api/v1/generations/video/GENERATION_ID \
--header "Authorization: Bearer $MAKEINFLUENCER_API_KEY"Poll until terminal is true. On success, ready is true. Readurl for video orurls for image output. See the polling guide for statuses and backoff.
Kling v2.6 Motion Control Standard API FAQ
How much does the Kling v2.6 Motion Control Standard API cost?
The documented sample request costs 17,544 MakeInfluencer credits. Final cost depends on the exact model inputs, and the preview-credits endpoint returns an exact quote without charging.
Does the Kling v2.6 Motion Control Standard API use a separate balance?
No. REST, MCP, and the MakeInfluencer dashboard use the same account credit balance.
How do I receive Kling v2.6 Motion Control Standard results?
Creation returns HTTP 202 with a generation ID. Poll the video generation-status endpoint until terminal is true. On success, ready is true and the response contains the output URL.