KYCName Match

Name Match API — Fuzzy Name Comparison

Compare two names and get a confidence score using fuzzy matching. Handles transliterations, abbreviations, and spelling variations.

curl -X GET "https://production.deepvue.tech/v1/name-match?name1=John Doe&name2=John Doe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "sub_code": "SUCCESS",
  "message": "Request processed successfully",
  "timestamp": 1711688769712,
  "transaction_id": "b6b95b94-2c58-4dc3-8de5-969d52d57938",
  "data": {
    "cleaned_name1": "Chandra Shekhar Kandpal",
    "cleaned_name2": "Chandra Shekhar Kandppal",
    "score": 98,
    "tokenwise_match": [
      {
        "first_name1": "Chandra",
        "first_name2": "Chandra",
        "score": 100
      },
      {
        "middle_name1": "Shekhar",
        "middle_name2": "Shekhar",
        "score": 100
      },
      {
        "last_name1": "Kandpal",
        "last_name2": "Kandppal",
        "score": 93
      }
    ]
  }
}
GET
/v1/name-match
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

The Name Match API involves comparing patterns against the text to identify matches or similarities, and gives a score for that. This tool addresses scenarios involving substantial name variations. You submit pairs of names for verification and receive a matching determination plus numerical scoring.

How it works

The API processes two name inputs and returns:

  • Cleaned and standardized versions of both names
  • Overall match score
  • Token-wise analysis breaking down individual name components (first, middle, last names) with individual scores