Face matching

The Face Matching API allows you to compare two user-submitted face images to determine their similarity. This endpoint processes the images, runs biometric validation checks, and returns a response indicating whether the faces match, along with a similarity score and confidence level.

Create a new user

POST {{BASE-URL}}/verification/external/face/matching

Headers

Name
Value

Content-Type

application/json

api-key

<api key from your portal>

Body

Name
Type
Description

source_image

string

source image - base64

target_image

string

Target Image - base64

Response

```json
{
    "status": true,
    "message": "Face match successful",
    "data": {
         "status": true, 
         "similarity": 89
         
    }
}
```

Last updated