Kling Omni-Image de Kuaishou (endpoint omni-image). Texto a imagen, edición de una sola imagen, fusión multiimagen y lotes de hasta 9. Dos versiones del modelo: kling-image-o1 (solo 1K/2K) y kling-v3-omni (1K/2K/4K).
Authorization: Bearer YOUR_API_KEY| Model | model | Price | Notas |
|---|---|---|---|
| Kling Omni-Image (o1) | kling-image-o1 | $0.0500/imagen | 1K/2K, lotes de 1-9 |
| Kling V3 Omni · 1K/2K | kling-v3-omni | $0.0500/imagen | 1K/2K, lotes de 1-9 |
| Kling V3 Omni · 4K | kling-v3-omni | $0.1000/imagen | Nivel 4K |
# Step 1: Create task (text-to-image)
curl -X POST https://apimodels.app/api/v1/images/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-image-o1",
"prompt": "A serene mountain lake at dawn, photorealistic",
"resolution": "2k",
"aspect_ratio": "16:9",
"n": 1
}'
# Multi-image input (image fusion)
curl -X POST https://apimodels.app/api/v1/images/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kling-image-o1",
"prompt": "Combine these two people into one scene",
"image_urls": [
"https://example.com/person1.jpg",
"https://example.com/person2.jpg"
],
"resolution": "2k"
}'
# Step 2: Poll status
curl "https://apimodels.app/api/v1/images/generations?task_id=TASK_ID" \
-H "Authorization: Bearer YOUR_API_KEY"| Field | Required | Type | Description |
|---|---|---|---|
| model | Yes | string | "kling-image-o1" (1K/2K) o "kling-v3-omni" (1K/2K/4K) |
| prompt | Yes | string | Descripción de texto o instrucciones de edición |
| image_url | No | string | URL de una sola imagen de referencia para la edición de imágenes |
| image_urls | No | string[] | Varias URL de imágenes de referencia para la fusión multiimagen |
| resolution | No | string | "1k" (por defecto), "2k"; kling-v3-omni admite además "4k" |
| aspect_ratio | No | string | "1:1" (por defecto), "16:9", "9:16", "4:3", "3:4" |
| n | No | integer | Tamaño del lote: 1-9 (por defecto: 1) |
| callback_url | No | string | URL del webhook que se invoca cuando la tarea finaliza |
Try it in the Playground
Both share the same endpoint and features; kling-image-o1 outputs 1K/2K only, while kling-v3-omni additionally supports 4K (at a higher per-image price).
By resolution: 1K/2K $0.05 per image; kling-v3-omni 4K $0.10 per image. Batch n multiplies the per-image price.