kling-video-v3, kling-video-v3-turbo, and kling-video-v3-omni.data.id (task ID) upon success.data[].status = succeeded, and obtain the video URL from the result.Model Name | model Parameter Value | Supported Capability | Video Duration (s) | Resolution Tier | Aspect Ratio (Text-to-Video/Omni) | Selection Recommendations |
Kling-Video-V3 | kling-video-v3 | Text-to-video / image-to-video (including first-last frame and element) | 3 ~ 15 | 720p / 1080p / 4k | 16:9,9:16,1:1 | Flagship model: supports native audio, multi-shot, element reference, and 4K, with the most comprehensive capabilities. |
Kling-Video-V3-omni | kling-video-v3-omni | Omnipotent video generation (multimodal input of text/image/video, and video editing) | 3 ~ 15 | 720p / 1080p / 4k | 16:9,9:16,1:1 | Scenarios requiring multimodal mixed inputs such as reference video and video editing. |
Kling-Video-V3-turbo | kling-video-v3-turbo | Text-to-video / image-to-video | 3 ~ 15 | 720p / 1080p | 16:9,9:16,1:1 | V3 fast version, faster generation and lower cost, suitable for batch generation; simplified parameters (no audio or multi-shot). |
aspect_ratio parameter, so the output aspect ratio follows the input image ratio.POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/text-to-videoParameter Name | Required | Type | Description |
model | Yes | string | Model version. Value range: kling-video-v3, kling-video-v3-turbo |
prompt | Yes | string | Prompt, which can include positive and negative descriptions. V3: ≤ 3072 characters (≤ 2500 recommended), supporting multi-shot template syntax; V3 Turbo: ≤ 2500 characters. |
settings | No | object | Output configuration. See the table below for subfields (supported fields vary by model). |
options | No | object | General configuration. See the table below for subfields. |
Subfield | Applicable Model | Description |
resolution | All | Resolution. V3: 720p / 1080p / 4k; V3 Turbo: 720p / 1080p. Default value: 720p. |
aspect_ratio | All | Aspect ratio. Options: 16:9 / 9:16 / 1:1. Default value: 16:9. |
duration | All | Duration in seconds. An integer from 3 to 15. Default value: 5. |
multi_shot | V3 only | Whether to generate multi-shot video. Default value: true. When set to false, multi-shot prompts do not produce multi-shot output. |
audio | V3 only | Audio. Options: native (generates native audio that matches the video) / off (default). |
kling-video-v3-turbo support only three fields: resolution / aspect_ratio / duration. multi_shot and audio are not supported.Subfield | Required | Description |
external_task_id | No | Custom task ID, unique within the account, supports querying tasks by this ID. |
watermark_info | No | Watermark configuration. Structure: {"enabled": true/false}, where true enables the watermark. |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/text-to-video' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"model": "kling-video-v3","prompt": "A girl sat on the train, looking out the window, sunlight streaming across her face","settings": {"resolution": "1080p","aspect_ratio": "16:9","duration": 5,"audio": "native"}}'
model in the example with kling-video-v3-turbo to call the corresponding model. Note that V3 Turbo does not support the audio / multi_shot fields.Field | Type | Description |
code | int | Business error code; 0 indicates success, and for other values, see Appendix: Unified Error Codes. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID generated by the system, used for issue tracking and troubleshooting. |
data | object | Task data object. |
data.id | string | Task ID generated by the system, used for subsequent task queries. |
data.status | string | Task status; fixed as submitted upon successful submission, and subsequent statuses are obtained through the query API. |
data.message | string | Task status information; displays the failure reason when the task fails. |
data.create_time | long | Task creation time; Unix timestamp in milliseconds. |
data.update_time | long | Task update time; Unix timestamp in milliseconds. |
{"code": 0,"message": "SUCCEED","request_id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4","data": {"id": "task_xxxxxxxxxxxx","status": "submitted","message": "","create_time": 1714000000000,"update_time": 1714000000000}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". After a task is submitted successfully, the task status during the generation phase can be obtained through the "Query Task Result" API:status | Description | Handling Recommendation |
processing | Processing (including queued) | Keep polling. |
succeeded | Generation succeeded | Obtain the video URL from the query result. |
failed | Generation failed | Check the failure cause, make modifications, and retry. If the failure persists, contact technical support and provide the request_id. |
POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/image-to-videoParameter Name | Required | Type | Description |
model | Yes | string | Model version. Value range: kling-video-v3, kling-video-v3-turbo |
contents | Yes | array | A collection of reference materials. Place fields of the same material in the same object. It must contain at least one prompt and one first_frame. See the table below for sub-fields. |
settings | No | object | Output configuration. See the table below for sub-fields. Note: Image-to-video does not have the aspect_ratio parameter, and the aspect ratio is determined by the input image. |
options | No | object | General configuration, same as that for text-to-video. |
Parameter Name | Required | Type | Description |
type | Yes | string | Material type. Supported by each model: V3: prompt / first_frame / last_frame / element; V3 Turbo: prompt / first_frame. |
text | Conditionally required | string | Text prompt. Required when type=prompt. ≤ 2500 characters; V3 supports multi-shot template syntax and @element references. |
url | Conditionally required | string | Image asset (URL or Base64). Required when type=first_frame / last_frame. Constraints: .jpg/.jpeg/.png, ≤ 50 MB, width and height both ≥ 300 px, aspect ratio 1:2.5 to 2.5:1. |
element_id | Conditionally required | string | Element reference (JSON definition). Required when type=element, V3 only; up to 3, referenced in prompt as @xxx. |
Subfield | Applicable Model | Description |
resolution | All | Resolution. V3: 720p / 1080p / 4k; V3 Turbo: 720p / 1080p. Default value: 720p. |
duration | All | Duration in seconds. An integer from 3 to 15. Default value: 5. |
multi_shot | V3 only | Whether to generate multi-shot video. Default value: true. |
audio | V3 only | Audio. Options: native / off (default: off). |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/image-to-video' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"model": "kling-video-v3","contents": [{"type": "prompt","text": "Make the subject in the image turn its head naturally while the camera slowly zooms in"},{"type": "first_frame","url": "https://example.com/start.jpg"}],"settings": {"resolution": "1080p","duration": 5}}'
{"code": 0,"message": "SUCCEED","request_id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4","data": {"id": "task_xxxxxxxxxxxx","status": "submitted","message": "","create_time": 1714000000000,"update_time": 1714000000000}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". The task status description is the same as that in "Text-to-Video".POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/omni-videoParameter Name | Required | Type | Description |
model | Yes | string | Model version. Value: kling-video-v3-omni |
contents | Yes | array | A collection of multimodal reference materials. Place fields of the same material in the same object. See the table below for sub-fields. |
settings | No | object | Output configuration. See the table below for subfields. |
options | No | object | General configuration, same as that for text-to-video. |
Parameter Name | Required | Type | Description |
type | Yes | string | Material type. Enum values: prompt / first_frame / last_frame / refer_image / feature_video (feature reference video) / base_video (base video to be edited) / element / voice (timbre). |
text | Conditionally required | string | Text prompt. Required when type=prompt. ≤ 3072 characters (recommended ≤ 2500); supports @xxx material references and multi-shot syntax; can reference voice materials through @id. |
url | Conditionally required | string | Image/video asset. Images support URL or Base64; videos support URL only. Image constraints: jpg/jpeg/png, ≤ 50 MB, width and height ≥ 300 px, aspect ratio 1:2.5 to 2.5:1. Video constraints: mp4/mov, ≤ 200 MB, duration 3 to 15.5 seconds. |
element_id | Conditionally required | string | Element ID (created through the element management API). Required when type=element. |
voice_id | Conditionally required | string | Voice ID. Required when type=voice. Obtained by querying after creation in "Voice Management", or use system preset voices. |
id | Conditionally required | string | Material index ID. Required when type=voice; must be unique within the same task, and referenced in the prompt as @id to use this voice. |
Subfield | Required | Description |
resolution | No | Resolution. 720p / 1080p / 4k. Default value: 720p. |
aspect_ratio | Conditionally required | Aspect ratio: 16:9 / 9:16 / 1:1, default 16:9. Required when there is no first frame and no reference video. |
duration | No | Duration in seconds. An integer from 3 to 15. Default value: 5. |
multi_shot | No | Whether to generate multi-shot video. Default value: true. |
audio | No | Audio. Options: native / original / off (default: off). original=retains the original audio of the reference video. |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/omni-video' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"model": "kling-video-v3-omni","contents": [{"type": "prompt","text": "Change the color of the parrots feathers to blue, keeping the background unchanged"},{"type": "base_video","url": "https://example.com/input.mp4"}],"settings": {"resolution": "1080p","duration": 5,"audio": "original"}}'
{"code": 0,"message": "SUCCEED","request_id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4","data": {"id": "task_xxxxxxxxxxxx","status": "submitted","message": "","create_time": 1714000000000,"update_time": 1714000000000}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". The task status description is the same as that in "Text-to-Video".image_refer) or a reference video (video_refer). After creation, it can be referenced through element_id in the Image-to-Video and Omni Video Generation APIs to reuse the customized character.element_id.POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/advanced-custom-elementsParameter Name | Required | Type | Description |
element_name | Yes | string | Element name, up to 20 characters. Example: "my_hero". |
element_description | Yes | string | Element description, up to 100 characters. |
reference_type | Yes | string | Reference method. Values: image_refer (multi-image subject) / video_refer (video subject). |
element_image_list | Conditionally required | object | Multi-image reference object, required when reference_type=image_refer. Contains frontal_image (at least 1 front image) and refer_images[].image_url (1 to 3 images from different angles or close-ups). Images can be passed in via public URL or Base64. Constraints: jpg/jpeg/png, no more than 10 MB, width and height greater than or equal to 300 px, aspect ratio between 1:2.5 and 2.5:1. |
element_video_list | Conditionally required | object | Video reference object, required when reference_type=video_refer. Structure: {"refer_videos": [{"video_url": "..."}]}. Constraints: MP4/MOV, duration 3 to 8 seconds, 1080P, aspect ratio 16:9 or 9:16, no more than 200 MB. |
element_voice_id | No | string | Binds the ID of an existing voice in the voice library. If empty, no voice is bound. |
tag_list | No | array | Tag configuration, structure [{ "tag_id": "o_101" }]. tag_id enumeration: o_101 meme / o_102 person / o_103 animal / o_104 prop / o_105 clothing / o_106 scene / o_107 effect / o_108 other. |
external_task_id | No | string | Custom task ID, unique within the account. |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/advanced-custom-elements' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"element_name": "my_hero","element_description": "A young man with short hair, wearing a blue jacket","reference_type": "image_refer","element_image_list": {"frontal_image": "https://example.com/front.jpg","refer_images": [{ "image_url": "https://example.com/side.jpg" }]}}'
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/advanced-custom-elements' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"element_name": "my_hero","element_description": "A young man with short hair, wearing a blue jacket","reference_type": "video_refer","element_video_list": {"refer_videos": [{ "video_url": "https://example.com/demo.mp4" }]}}'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID generated by the system, used for issue tracking and troubleshooting. |
data.task_id | string | Task ID generated by the system. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_info.external_task_id | string | Custom task ID (returned if provided at creation). |
data.task_status_msg | string | Displays the failure reason when the task fails, and is an empty string in normal cases. |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
data.final_unit_deduction | string | Final deducted points value for the task. |
data.final_balance_deduction.quota | string | Discounted price for quota deduction. |
data.final_balance_deduction.list_price | string | List price for quota deduction. |
{"code": 0,"message": "SUCCEED","request_id": "02f9537c-9319-4cfb-b347-8f22cb73ffc8","data": {"task_id": "921939922066997283","task_status": "submitted","task_info": {},"created_at": 1787836125041,"updated_at": 1787836125041}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes".data.task_status = succeed, and obtain the subject information from data.task_result.elements[].GET https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/advanced-custom-elements/{id}{id} in the path is the data.task_id returned when the task was created, and it can also be replaced by the external_task_id passed in at creation time.Parameter Name | Required | Type | Description |
task_id | Yes | string | Task ID of the element creation task, which is filled into the query path {id}; alternatively, it can be replaced by the external_task_id used at creation. |
curl -X GET 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/advanced-custom-elements/YOUR_TASK_ID' \\-H 'Authorization: Bearer YOUR_API_KEY'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID generated by the system, used for issue tracking and troubleshooting. |
data.task_id | string | Task ID generated by the system. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_info.external_task_id | string | Custom task ID (returned if provided at creation). |
data.task_status_msg | string | Displays the failure reason when the task fails, and is an empty string in normal cases. |
data.task_result.elements[] | array | List of subjects, returned when task_status=succeed. |
data.task_result.elements[].element_id | number | Subject ID, globally unique. |
data.task_result.elements[].element_name | string | Subject name. |
data.task_result.elements[].element_description | string | Subject description. |
data.task_result.elements[].element_type | string | Reference method: image_refer (multi-image subject) / video_refer (video subject). |
data.task_result.elements[].element_image_list | object | Image reference information (available for image_refer). Contains frontal_image and refer_images[].image_url. |
data.task_result.elements[].element_video_list | object | Video reference information (available for video_refer). |
data.task_result.elements[].owned_by | string | Subject source; kling indicates the official subject library, and other values indicate the creator ID. |
data.task_result.elements[].status | string | Subject status: succeed (normal) / deleted. |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
data.final_unit_deduction | string | Final deducted points value for the task. |
data.final_balance_deduction.quota | string | Discounted price for quota deduction. |
data.final_balance_deduction.list_price | string | List price for quota deduction. |
{"code": 0,"message": "SUCCEED","request_id": "656ee178-de4f-48ea-9763-166bbaa3e4cc-query-1787836129","data": {"task_id": "921939922066997283","task_status": "succeed","task_info": {},"task_result": {"elements": [{"element_id": 319807609263140,"element_name": "Advanced Subject_Image Test","element_description": "A young man with short hair, wearing a blue jacket","element_type": "image_refer","element_image_list": {"frontal_image": "https://example.com/front.jpg","refer_images": [{ "image_url": "https://example.com/side.jpg" }]},"element_video_list": {},"owned_by": "826925436873121851","status": "succeed"}]},"task_status_msg": "","created_at": 1787836125041,"updated_at": 1787836128102,"final_unit_deduction": "0","final_balance_deduction": {"quota": "0","list_price": "0"}}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". For the reason of task failure, see data.task_status_msg.POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/delete-advanced-elementsParameter Name | Required | Type | Description |
element_id | Yes | string | ID of the element to delete. |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/delete-advanced-elements' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"element_id": "319807609263140"}'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID generated by the system, used for issue tracking and troubleshooting. |
data.task_id | string | Task ID generated by the system. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_status_msg | string | Displays the failure reason when the task fails, and is an empty string in normal cases. |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
{"code": 0,"message": "SUCCEED","request_id": "dd4a503f-8afd-415d-b3e8-de4c26d4f87a","data": {"task_id": "921939922066997283","task_status": "succeed","task_info": {},"task_result": {},"task_status_msg": "","created_at": 1787836125041,"updated_at": 1787836128102,"final_unit_deduction": "0","final_balance_deduction": {"quota": "0","list_price": "0"}}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes".voice_id in APIs such as Omni Video Generation (materials with type=voice in contents), Digital Human (avatar), and Lip Sync (advanced-lip-sync).data.task_id (task ID) upon success.data.task_status = succeed, and obtain the voice_id from data.task_result.voices[].POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/custom-voicesParameter Name | Required | Type | Description |
voice_name | Yes | string | Voice name. |
voice_url | Conditionally required | string | Public URL of the reference audio. Select either this parameter or video_id. |
video_id | Conditionally required | string | Video ID of the video that contains the target audio (a video generated by a video generation task). Select either this parameter or voice_url. |
external_task_id | No | string | Custom task ID, unique within the account. |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/custom-voices' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"voice_name": "Test voice","voice_url": "https://example.com/reference.mp3"}'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID generated by the system, used for issue tracking and troubleshooting. |
data.task_id | string | Task ID generated by the system, used for subsequent task queries. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_info.external_task_id | string | Custom task ID (returned if provided at creation). |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
{"code": 0,"message": "SUCCEED","request_id": "a90bd11c-f272-4686-bad9-72310898a217","data": {"task_id": "917124237444943953","task_status": "submitted","task_info": {},"created_at": 1786687976483,"updated_at": 1786687976483}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes".voice_id and preview URL from the result.GET https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/custom-voices/{task_id}{task_id} in the path is the data.task_id returned by the creation API. It can also be replaced by the external_task_id passed in at creation time. Polling every 2 to 3 seconds is recommended.Parameter Name | Required | Type | Description |
task_id | Yes | string | Task ID (path parameter), which is the data.task_id returned by the creation API. |
curl -X GET 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/custom-voices/YOUR_TASK_ID' \\-H 'Authorization: Bearer YOUR_API_KEY'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID. |
data.task_id | string | Task ID. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_status_msg | string | Task status information; displays the failure reason when the task fails. |
data.task_info.external_task_id | string | Custom task ID (returned if provided at creation). |
data.task_result.voices[] | array | List of voices, returned when task_status=succeed. |
data.task_result.voices[].voice_id | string | Voice ID, used for reference by APIs such as digital human and lip-sync. |
data.task_result.voices[].voice_name | string | Voice name. |
data.task_result.voices[].trial_url | string | The voice preview audio URL is temporary. Download and save it promptly. |
data.task_result.voices[].owned_by | string | Voice owner identifier. |
data.task_result.voices[].status | string | Voice status: succeed (normal) / deleted. |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
data.final_unit_deduction | string | Number of units deducted for this task. |
data.final_balance_deduction.quota | string | Discounted price for quota deduction. |
data.final_balance_deduction.list_price | string | List price for quota deduction. |
{"code": 0,"message": "SUCCEED","request_id": "8efcf51b-4637-4616-a21b-436501eaef96-query-1786687983","data": {"task_id": "917124237444943953","task_status": "succeed","task_info": {},"task_result": {"voices": [{"voice_id": "917124264959582304","voice_name": "Test voice","trial_url": "https://example.com/voice-trial.wav","owned_by": "826925436873121851","status": "succeed"}]},"task_status_msg": "","created_at": 1786687976483,"updated_at": 1786687982942,"final_unit_deduction": "0.05","final_balance_deduction": {"quota": "0","list_price": "0"}}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". For the reason of task failure, see data.task_status_msg.POST https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/delete-voiceParameter Name | Required | Type | Description |
voice_id | Yes | string | Voice ID to delete (the voice_id returned by the query API). |
curl -X POST 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/delete-voice' \\-H 'Authorization: Bearer YOUR_API_KEY' \\-H 'Content-Type: application/json' \\-d '{"voice_id": "917124264959582304"}'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information; "SUCCEED" on success. |
request_id | string | Request ID. |
data.task_id | string | Creation task ID corresponding to the voice. |
data.task_status | string | Task status: submitted / processing / succeed / failed. |
data.task_result | object | Deletion result object (usually an empty object {}, indicating successful deletion). |
data.task_status_msg | string | Displays the failure reason when the task fails, and is an empty string in normal cases. |
data.created_at | number | Task creation time, Unix timestamp in milliseconds. |
data.updated_at | number | Task last update time, Unix timestamp in milliseconds. |
{"code": 0,"message": "SUCCEED","request_id": "b641fc55-7f23-41e5-8155-2fa371c3d871","data": {"task_id": "917124237444943953","task_status": "succeed","task_info": {},"task_result": {},"task_status_msg": "","created_at": 1786687976483,"updated_at": 1786687982942,"final_unit_deduction": "0.05","final_balance_deduction": {"quota": "0","list_price": "0"}}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes".GET https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/tasks/{task_id}{task_id} in the path is the data.id returned when the task was submitted (represented by YOUR_TASK_ID in the example). Video generation takes approximately several minutes, so polling every 3 to 5 seconds is recommended. Response fields are provided according to the official Kling API structure, and the actual returned response prevails.Parameter Name | Required | Type | Description |
task_id | Yes | string | Task ID (path parameter), which is the data.id returned when the task is submitted. |
curl -X GET 'https://tokenhub-intl.tencentcloudmaas.com/v1/wand/kling/tasks/YOUR_TASK_ID' \\-H 'Authorization: Bearer YOUR_API_KEY'
Field | Type | Description |
code | int | Business error code; 0 indicates success. |
message | string | Error or prompt information. |
request_id | string | Request ID. |
data | array | List of task results. |
data[].id | string | Task ID. |
data[].status | string | Task status: processing / succeeded / failed. |
data[].message | string | Task status information; displays the failure reason when the task fails. |
data[].outputs | array | List of video results. |
data[].outputs[].type | string | Type of generated result; the current video result is video. |
data[].outputs[].id | string | Video ID. |
data[].outputs[].url | string | The video file URL is temporary. Download and save it promptly. |
data[].outputs[].duration | string | Video duration in seconds. |
data[].create_time | long | Task creation time; Unix timestamp in milliseconds. |
data[].update_time | long | Task update time; Unix timestamp in milliseconds. |
tokenhub_usage | object | Usage consumption. |
tokenhub_usage.total_tokens | integer | Number of tokens consumed by this task, used for billing/reconciliation. |
{"code": 0,"data": [{"update_time": 1786429168170,"create_time": 1786428992000,"id": "251435731-WandVideo-7d1997fb7ad74bfabd2814b4a9962571","message": "","outputs": [{"duration": "10.041","id": "916037982829322296","type": "video","url": "https://example.com/output-video.mp4?q-sign-algorithm=sha1&q-signature=xxxxxx"}],"status": "succeeded"}],"message": "SUCCEED","request_id": "5d0b35d5-da56-4dae-8e6c-81035122e716-query-1786429167","tokenhub_usage": {"total_tokens": 600000}}
code is not 0. For specific error codes and handling suggestions, see "Appendix: Unified Error Codes". The task status description is the same as that in "Text-to-Video".HTTP Status Code | Business Code | Error Message | Description |
200 | 0 | success | Request succeeded |
401 | 1000 | Authentication failed | Authorization missing or invalid apikey |
401 | 1001 | Authorization is empty | Authorization header not carried |
401 | 1002 | Authorization is invalid | The apikey is invalid or has expired. |
401 | 1003 | Authorization is not yet valid | The apikey is not yet valid. |
401 | 1004 | Authorization has expired | The apikey has expired. |
429 | 1100 | Account exception | Account exception (possibly due to overdue payment, suspension, or ban) |
429 | 1101 | Account in arrears (postpaid) | Postpaid account overdue payment |
429 | 1102 | Resource pack depleted or expired | The resource pack has been used up or has expired. |
403 | 1103 | Access denied for the requested resource | No access to the requested resource (the corresponding model/capability is not subscribed) |
400 | 1200 | Invalid request parameters | Invalid request parameters (missing required fields, incorrect types, out-of-range enum values, and so on) |
400 | 1201 | Invalid parameters | Invalid parameter value. Check the valid value range in the documentation. |
404 | 1202 | The requested method is invalid | Incorrect HTTP method |
404 | 1203 | The requested resource does not exist | Incorrect endpoint path or nonexistent resource |
400 | 1300 | Trigger the platform strategy | Triggers a platform policy (such as failed content moderation or non-compliant input) |
400 | 1301 | Trigger platform sensitive word list | Hit sensitive words or non-compliant prompts |
429 | 1302 | Too frequent API calls | Calls are too frequent, triggering rate limiting. |
429 | 1303 | Concurrency or QPS exceeds the limit | The concurrency or QPS exceeds the preset quota. |
400 | 1304 | Trigger IP strategy | Trigger IP address policy-based interception |
500 | 5000 | Internal server error | Internal server error |
503 | 5001 | Server is temporarily unavailable | Service temporarily unavailable (usually due to high load or maintenance). |
504 | 5002 | Server internal timeout | Internal server timeout |
shot n, m, words; shot n, m, words;. Separate each shot with a half-width semicolon.n: Shot number. A minimum of 1 and a maximum of 6 shots are supported.m: Shot duration in seconds. Each shot must be at least 1 second, and the sum of all shot durations must equal the total video duration.words: The prompt for this shot. Maximum length: 512 characters.kling-video-v3 and kling-video-v3-omni support this feature, and multi_shot=true (default) is required for it to take effect.kling-video-v3.kling-video-v3-omni.kling-video-v3-turbo (audio and multi-shot are not supported).aspect_ratio parameter is not available. Only text-to-video and Omni video generation support this parameter, and it is required for Omni video generation when no first frame or reference video is provided.image_refer) or a reference video (video_refer). After it is created through the Element Management API, an element_id is obtained, which can be referenced in Image-to-Video and Omni Video Generation to maintain character consistency across tasks. Reference an element in prompts using @ElementName, and avoid using element names that are substrings of each other.voice_id is obtained, which can be referenced in APIs such as Omni Video Generation, Digital Human (avatar), and Lip Sync (advanced-lip-sync). The trial_url in the query result is a temporary preview URL, so download and store it promptly.Apakah halaman ini membantu?
Anda juga dapat Menghubungi Penjualan atau Mengirimkan Tiket untuk meminta bantuan.
masukan