Phonetic Name Matching

🪷 Cultural Cognisance: Advanced Name Matching

Endpoint: /v2/kyc/match/name

Understanding the cultural nuances is our forte.

Our API delves deeper into names, discerning between salutations and Indian honourifics with finesse, ensuring you don’t mix up "Shri Rajan" with "Rajan Ji".

{
    "reference_id": "DEC001",
    "name1": "Dada Joel Rego Bhai",
    "name2": "Shri Shri Joyal Raygoo Ji",
    "match_threshold": {
        "textual": 80, 
        "phonetic": 80
    }
}
{
    "decentroTxnId": "XXXXXXXXXXXX",
    "status": "SUCCESS",
    "message": "Successfully performed name matching",
    "data": {
        "overallScore": {
            "value1": "joel rego",
            "value2": "joyal raygoo",
            "phoneticMatch": {
                "matchScore": 91,
                "matchStatus": true
            },
            "textualMatch": {
                "matchScore": 67,
                "matchStatus": false
            }
        },
        "firstName": {
            "value1": "joel",
            "value2": "joyal",
            "phoneticMatch": {
                "matchScore": 80,
                "matchStatus": true
            },
            "textualMatch": {
                "matchScore": 67,
                "matchStatus": false
            }
        },
        "lastName": {
            "value1": "rego",
            "value2": "raygoo",
            "phoneticMatch": {
                "matchScore": 100,
                "matchStatus": true
            },
            "textualMatch": {
                "matchScore": 60,
                "matchStatus": false
            }
        }
    },
    "responseKey": "success_name_match_completed"
}