Face Query
Query
POST
https://okaydocdemo.innov8tif.com/ekyc/api/innov-face/facequery/query
This API enables the querying and match the facial image in database to check for existence
Request Body
Name
Type
Description
apiKey
string
To be assigned by Innov8tif
imageBase64
string
Selfie image or portrait image in base64
imageFile
string
Selfie image or portrait image
groupName
string
Group name that existed in database that matches the facial image
{
"status": "success",
"resultFound": true,
"groupFound": true,
"name": "zhiyan",
"score": 0.0
}
Input Example in Postman

Query facial image need to fulfill the image requirement for better accuracy
Possible Responses
{
"status": "success",
"resultFound": true,
"groupFound": true,
"name": "zhiyan",
"score": 0.0
}
{
"status": "success",
"resultFound": false,
"groupFound": true
}
{
"status": "success",
"resultFound": false,
"groupFound": false
}
{
"status": "error",
"message": "There is No Face Detected in Image",
"resultFound": false,
"groupFound": false
}
Threshold
The score of the successful image found are listed below:
Threshold Value
Description Status
Score > 0.53
Query Pass
Score <= 0.53
Query Fail
Last updated
Was this helpful?