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=RAHUL%20KUMAR%20SHARMA&name2=RAHUL%20K%20SHARMA" \
  -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": "RAHUL KUMAR SHARMA",
    "cleaned_name2": "RAHUL KUMAR SHARMAA",
    "score": 98,
    "tokenwise_match": [
      {
        "first_name1": "RAHUL",
        "first_name2": "RAHUL",
        "score": 100
      },
      {
        "middle_name1": "KUMAR",
        "middle_name2": "KUMAR",
        "score": 100
      },
      {
        "last_name1": "SHARMA",
        "last_name2": "SHARMAA",
        "score": 93
      }
    ]
  }
}
GET
/v1/name-match
GET
Base URLstring

Target server for requests. Edit to use your own host.

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

name1string
Required
Example:
RAHUL KUMAR SHARMA
name2string
Required
Example:
RAHUL K SHARMA

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