cURL
curl --request POST \ --url https://api.kiriku.app/v1/match/face \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "referenceImage": "<string>", "liveImage": "<string>" } '
{ "match": true, "similarity": 123, "confidence": "<string>", "distance": 123, "threshold": 123, "processingMs": 123 }
Compare two face images and return a similarity score.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Base64 encoded reference image (e.g., ID card).
Base64 encoded live image (e.g., selfie).
Face match completed