Passive Liveness
Overview
We know it's hard to do a Liveness check with a video of the customer. It results in the following -
- High response time
- Limited file type support
- And hard to convince customers to record a video for a liveness check
To solve the above issues, we have brought Passive Liveness for our customers -
- Liveness check with just an image/selfie
- Super fast response time
- Multiple file support - JPG, JPEG, and PNG
- Simple request body parameters
- An easy and clear response message with a liveness score
- Easy for the customer to click or upload an image
Use Cases
- Identity Fraud Prevention
- Digital Onboarding
- Full KYC using Passive Liveness
Sample Request & Response
curl --location 'https://in.staging.decentro.tech/v2/kyc/forensics/liveness/passive' \
--header 'client_id: <your_client_id>' \
--header 'client_secret: <your_client_secret>' \
--header 'module_secret: <your_module_secret>' \
--form 'reference_id="ManishGupta"' \
--form 'consent="true"' \
--form 'purpose="for bank verification only"' \
--form '[email protected]"/path/to/file"'
{
"decentroTxnId": "DXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"status": "SUCCESS",
"responseCode": "S00000",
"message": "Passive liveness check performed successfully",
"data": {
"status": "SUCCESS",
"live": "yes",
"livenessScore": "85",
"needToReview": "no"
},
"responseKey": "success_liveness_check"
}
Updated 10 days ago