Face Match (Two Images)
You can use the Face Match service by providing two face images to be compared. The result will be "True" if similar or "False" if not.
Face Match (Two Images)
POST
https://valifystage.com/api/v1/face/match/
Headers
Name
Type
Description
Content-Type
string
application/json
Authentication
string
Bearer <access-token>
Request
Name
Type
Description
data*
object
Request details
{
first_img: <base64 str>,
second_img: <base64 str>,
bundle_key: <str>,
lang: <str>
}
Status Codes
{
'result': {
'is_similar': '<bool>',
'confidence': '<float>'
},
'transaction_id': '<str>',
'trials_remaining': '<int>'
}
Integration
Download the JSON file.
Open Postman and click on Import.

Drop the JSON file.

Click on "Face Match" then click on "Authorization" and replace the <access token> field with your access token and then click on "Body".

Click on "Face Match" then "Body" and fill in the required fields then click on "Send".

Last updated