LinkexLinkex Docs
API ReferenceGeneratedVideo kling

Kling 文生视频

POST
/kling/v1/videos/text2video

使用 Kling 模型从文本描述生成视频。

支持的模型:kling-v1, kling-v1-5 等

Authorization

BearerAuth
AuthorizationBearer <token>

使用 Bearer Token 认证。 格式: Authorization: Bearer sk-xxxxxx

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

视频生成请求

Response Body

application/json

application/json

curl -X POST "https://example.com/kling/v1/videos/text2video" \  -H "Content-Type: application/json" \  -d '{    "model": "kling-v1",    "prompt": "宇航员站起身走了",    "duration": 5,    "width": 1280,    "height": 720,    "fps": 30  }'
{  "task_id": "abcd1234efgh",  "status": "queued"}