Pruvly
  • Getting Started
    • Quick Start – Pruvly APIs
  • Document Engine
    • Document Check
    • FACE BIOMETRIC
    • Face matching
    • Age Detection
    • Face Liveness
Powered by GitBook
On this page
  1. Document Engine

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
         
    }
}
```
{
  "status": false
  "message": "Face does not match"
}
PreviousFACE BIOMETRICNextAge Detection

Last updated 3 months ago