Skip to main content
GET
/
v1
/
name-match
Name Match
curl --request GET \
  --url https://production.deepvue.tech/v1/name-match \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <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
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

x-api-key
string
header
required

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

Query Parameters

name1
string
required
name2
string
required

Response

Successful Response