Fingerprint Recognition API Guide

Fingerprint Verification

Overview

Fingerprints are like personal signatures, each one distinct and unique to an individual. These impressions, formed by the patterns on our fingers, play a crucial role in confirming identity. When we compare two fingerprints in a 1-to-1 match, we're checking if they belong to the same person. It's a straightforward but highly reliable way to confirm someone's identity.

Details

Request URL:- https://fingerprintapi.mxface.ai/api/FingerPrint/Verify

Method Type:-POST

Headers:-

Content-Type : application/json

Subscriptionkey : xxxxxxxxxxxx

Request Body

{
  "fingerPrint1": "string",
  "fingerPrint2": "string"
}
                                        

Request Parameters

Param Required Type Description
fingerPrint1 Yes String base64 encoded string of fingerprint
fingerPrint1 Yes String base64 encoded string of fingerprint.

Response Body

 
{
    "code": 0,
    "message": "string",
    "errorMessage": "string",
    "matched": 0 
}
                                    

Sample response when both fingerprints match

{
    "matched": 1
}
                                        

Sample response when both fingerprints not match

{
    "matched": 0
}
                                        

Response Parameters

Param Type Description
code int Code
message string Message
errorMessage string A human readable description of error
matched int If both iris matched, result will be 1 otherwise 0

Errors

Error Code Message
200 Success
401 Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription.
400 Invalid request.
Please pass valid json with all required parameters.
A human readable description of error
500 Something went wrong, please try again later.