Kling API now supports KOLORS
April 24, 2025
Table of contents
Kling API v1 has been updated to support KOLORS v1.5 and v2.0:
- Create images using KOLORS POST images/kolors
- Detect faces in images (free for all users) POST images/recognize-faces
- Upscale previously generated images POST images/upscale
Example » Text-to-Image
POST images/kolors reference none
.
CURL
curl --location 'https://api.useapi.net/v1-dev/kling/images/kolors' \
--header 'Authorization: Bearer user:1234-abcdefghijkl' \
--form 'email="[email protected]"' \
--form 'prompt="Swedish supermodel wearing a light pink mini sports crop top, running mini shorts, and high heels decorated with Swarovski crystals, posing for the camera. The background is a solid very light off-white. She is smiling and looking at the camera. Her right arm is raised up in the air, her legs are shoulder-width apart."' \
--form 'aspect_ratio="3:4"' \
--form 'imageCount="4"'
Result
Example » Restyle
POST images/kolors reference restyle
.
CURL and imageReference
curl --location 'https://api.useapi.net/v1-dev/kling/images/kolors' \
--header 'Content-Type: application/json;charset=utf-8' \
--header 'Authorization: Bearer user:1234-abcdefghijkl' \
--form 'imageReference="https://my-server.com/model.jpg"' \
--form 'email="[email protected]"' \
--form 'prompt="Fashion model posing for a magazine photoshoot. She is wearing Adidas shorts and a gold chain on her neck. She has a colorful dragon tattoo on her left arm."' \
--form 'imageCount="3"' \
--form 'reference="restyle"'
imageReference
Result
Example » Face
POST images/kolors reference face
.
CURL and imageReference
curl --location 'https://api.useapi.net/v1-dev/kling/images/kolors' \
--header 'Content-Type: application/json;charset=utf-8' \
--header 'Authorization: Bearer user:1234-abcdefghijkl' \
--form 'imageReference="https://my-server.com/model.jpg"' \
--form 'email="[email protected]"' \
--form 'prompt="Lady playing tennis, she is serving, standing behind the baseline. She is holding a tennis racket in her right hand. We can see the tennis ball in the air."' \
--form 'aspect_ratio="3:2"' \
--form 'faceStrength="90"' \
--form 'imageCount="3"' \
--form 'reference="face"'
imageReference
Result
Example » Subject
POST images/kolors reference subject
.
CURL and imageReference
curl --location 'https://api.useapi.net/v1-dev/kling/images/kolors' \
--header 'Content-Type: application/json;charset=utf-8' \
--header 'Authorization: Bearer user:1234-abcdefghijkl' \
--form 'imageReference="https://my-server.com/model/cup.jpeg"' \
--form 'email="[email protected]"' \
--form 'prompt="Professional photograph of a coffee cup standing on the marble table next to a plate with an appetizing slice of cherry cheesecake."' \
--form 'aspect_ratio="4:30"' \
--form 'subjectStrength="90"' \
--form 'imageCount="3"' \
--form 'reference="subject"'
imageReference
Result