AI-Powered Liveness Detection Technology
Easily improve your KYC with a modern technique of detecting liveness of human entity
API Documentation
/liveness/start POST
Start a liveness detection session
Body
{
"encoded_image": "base64_encoded_image_string"
}
Response: 200
{
"pk": "5604579c-a518-erdd-8097-eeec43d57138",
"userId": "1fhjd444d-2554-4c43-a48d-e1rr81c580d8",
"imageWidth": 593,
"imageHeight": 120,
"areaLeft": 54,
"areaTop": 86,
"areaWidth": 702,
"areaHeight": 520,
"minFaceAreaPercent": 30,
"noseLeft": 423,
"noseTop": 301,
"noseWidth": 10,
"noseHeight": 10
}
/liveness/frame PUT
Submit a frame for liveness challenge
Parameters
Body
{
"frameBase64": "base64_encoded_frame",
"timestamp": 1234567890
}
Response: 200
{
"message": "Frame saved successfully"
}
/liveness/verify POST
Verify the liveness challenge
Parameters
Body
{}
Response: 200
{
"success": true
}