Face Matching & Liveness
Sending face(s) to be analyzed for faces comparison and checking if the captured face(s) is/are live
Face Matching
Matching between face captured and face on Identity documents
POST
https://api.vlenseg.com/v1/ocr/face/match
Headers
ApiKey*
string
API Key is the main authentication method for the request
Request Body
transaction_id*
GUID
The transaction Id. Required as the comparison between face image must be with an existing Identity document within certain transaction.
image*
string
The base 64 encoding of the face image
Liveness detection with multiple face images
Detecting Liveness
POST
https://api.vlenseg.com/v1/ocr/liveness/multi
Detecting Liveness while matching between faces captured and face on Identity documents
Headers
ApiKey*
string
API Key is the main authentication method for the request
Request Body
transaction_id*
GUID
The transaction Id. Required as the comparison between faces image must be with an existing Identity document within certain transaction.
face_1*
string
The base 64 encoding of the 1st face image captured
face_2*
string
The base 64 encoding of the 2nd face image captured, the time gap between capturing it and 1st capture must not exceed 500 milliseconds
face_3*
string
The base 64 encoding of the 3rd face image captured, the time gap between capturing it and 2nd capture must not exceed 500 milliseconds
Last updated