More modelsKwaivgiKling v1.6 i2v standard

Generate video with kwaivgi/kling-v1.6-i2v-standard

Generates a video using the kwaivgi/kling-v1.6-i2v-standard model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

imagestring

First frame of the video; Supported image formats include.jpg/.jpeg/.png; The image file size cannot exceed 10MB, and the image resolution should not be less than 300*300px

promptstring

Text prompt for generation; Positive text prompt; Cannot exceed 2500 characters

Lengthlength <= 2000
duration?Video Duration

Generate video duration length seconds.

Value in"5" | "10"
guidance_scale?number

Flexibility in video generation; The higher the value, the lower the model’s degree of flexibility, and the stronger the relevance to the user’s prompt.

Default0.5
Range0 <= value <= 1
negative_prompt?string

Negative text prompt; Cannot exceed 2500 characters

Lengthlength <= 2500

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "kwaivgi/kling-v1.6-i2v-standard",    "image": "https://static.atlascloud.ai/media/images/1750155342769457471_s0tqmjgc.jpg",    "prompt": "The woman walks forward"  }'
{
  "id": "7hm7nbwarxrm80cnq1yvmxz4m4",
  "logs": "...",
  "urls": {
    "cancel": "http://example.com",
    "result": "http://example.com"
  },
  "input": {
    "model": "kwaivgi/kling-v1.6-i2v-standard",
    "image": "https://static.atlascloud.ai/media/images/1750155342769457471_s0tqmjgc.jpg",
    "prompt": "The woman walks forward",
    "duration": "5",
    "guidance_scale": 0.5,
    "negative_prompt": "string"
  },
  "model": "black-forest-labs/flux-dev",
  "output": [
    "https://replicate.delivery/..."
  ],
  "status": "processing",
  "created_at": "2025-03-21T11:36:30.151Z",
  "has_nsfw_contents": [
    false
  ]
}