v1
latestOpenAPI 3.1.02026-07-26793302.3 KBRun Kling image recognition
Submit one image and receive recognition flags such as head, face, cloth, or object segmentation presence.
post/kling/v1/videos/image-recognize
Headers
Content-Typestring
Optional content type header.
Request body
Response
Recognition result.
Example response
{
"code": 0,
"message": "SUCCEED",
"data": {
"task_result": {
"images": [
{
"type": "head_seg",
"is_contain": true
},
{
"type": "face_seg",
"is_contain": true
},
{
"type": "cloth_seg",
"is_contain": true
},
{
"type": "object_seg",
"is_contain": true
}
]
}
}
}