Face Comparison
Compare two (2) face images
This endpoint allows merchants to perform a comparison of two face images using the face biometric By using this endpoint, merchants can compare two face images to determine whether they are of the same person or not.
This can be particularly useful in scenarios such as online payments or identity verification, where it is essential to confirm the identity of the person making a transaction or accessing sensitive information.
TEST DATA
image_one: https://res.cloudinary.com/dh3i1wodq/image/upload/v1675417496/cbimage_3_drqdoc.jpg
image_two: https://res.cloudinary.com/dh3i1wodq/image/upload/v1677955197/face_image_tkmmwz.jpg
POST
{{URL}}/identitypass/verification/biometrics/face/comparison
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
image_one | face image URL(base64, png, jpeg) |
image_two | face image URL(base64, png, jpeg) |
Sample Response
{
"status": true,
"response_code": "00",
"message": "Fatch Match",
"confidence": 100
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
response_code | Represents the response code. |
message | Provides additional information or a descriptive message related to the response. |
Confidence | Represents the confidence score or level of certainty associated with the face match. |
Updated over 1 year ago