v47

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2024-06-17465244.2 KB
AI Services

Compare two faces using AI

This endpoint is used to compare two faces using AI. It returns the matching percentage for all the images that match. It accepts a Form Data containing the two images and returns the the facial comparison results.

post/api/ai/images/v2/facial-comparison

Response

Successful response

codeinteger
statusstring
processing_timeinteger
processing_idstring
processing_countinteger

Example response

{
  "code": 200,
  "status": "success",
  "data": {
    "analysed_data": [
      {
        "Confidence": 92.51395416259766
      }
    ]
  },
  "processing_time": 1268,
  "processing_id": "492e385b-f1ec-412a-904e-3f55fd36fd86",
  "processing_count": 1
}