Generate high-quality AI images using Kling v3.0 Image with support for batch generation of up to 4 images and up to 10 reference images.

Model

kuaishou/kling-3.0-image

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text description. Use @Image1, @Image2 to reference inputs
resolutionstringNo"2k""1k" or "2k"
aspect_ratiostringNo"auto""auto", "1:1", "16:9", "9:16", "4:3", "3:4", "3:2", "2:3", "21:9"
countintegerNo1Number of images to generate (1–4)
image_urlsstring[]No-Reference image URLs (max 10). Use @Image1, @Image2 in prompt

Example - Text-to-Image

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-image",
    "input": {
      "prompt": "A serene mountain landscape at sunset, photorealistic",
      "aspect_ratio": "16:9",
      "resolution": "2k",
      "count": 4
    }
  }'

Example - With Reference Images

curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "kuaishou/kling-3.0-image",
    "input": {
      "prompt": "Transform @Image1 into a watercolor painting style",
      "image_urls": ["https://example.com/reference.jpg"],
      "aspect_ratio": "1:1",
      "resolution": "2k"
    }
  }'

Response

{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "abc123def456",
    "status": "pending"
  }
}