AI Services
Identify Faces and Characteristics in an Image
This endpoint is used to identify faces and characteristics in an image. It accepts a Form Data containing the image and returns the the face detection results.
post/api/ai/images/v2/face-detection
Response
Successful response
Example response
{
"code": 200,
"status": "success",
"data": {
"analysed_data": [
{
"age_range": {
"high": 26,
"low": 18
},
"beard": {
"confidence": 73.7099380493164
},
"bounding_box": {
"height": 0.22712668776512146,
"left": 0.3961663544178009,
"top": 0.2599637806415558,
"width": 0.22138258814811707
},
"confidence": 99.99722290039062
}
]
},
"processing_time": 2189,
"processing_id": "b577b18e-1313-47d4-a709-ed3bb219ea52",
"processing_count": 1
}