cURL
curl --request POST \ --url https://api.kiriku.app/v1/kyc/score \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "extractionId": "<string>", "selfieBase64": "<string>", "enableAml": true } '
{ "kycScore": 123, "riskLevel": "low", "recommendation": "APPROVE", "breakdown": { "ocrConfidence": 123, "livenessScore": 123, "faceMatchScore": 123, "amlClear": true }, "verifiedAt": "2023-11-07T05:31:56Z" }
Calculate a complete KYC score using extraction, liveness, and face match.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of a completed extraction.
Base64 encoded selfie image.
Whether to perform an AML check.
KYC score calculated successfully
low
medium
high
critical
APPROVE
REVIEW
REJECT
Show child attributes