> For the complete documentation index, see [llms.txt](https://docs.tutelar.io/tutelar-api-document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tutelar.io/tutelar-api-document/kyc-verification/document-verification/india/name-compare.md).

# Name Compare

Submit document

## ind\_names

<mark style="color:green;">`POST`</mark> `https://secctrl.tutelar.io/api/v1/kyc/utility/ind_names`

## Post Parameters description is given below

<table><thead><tr><th>Post Parameter </th><th width="123">Type</th><th>is Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>name1</td><td>String</td><td>yes</td><td>name </td></tr><tr><td>name2</td><td>String</td><td>yes</td><td>name</td></tr></tbody></table>

#### Sample Post Parameters

```json
{
    "name1": "Vignesh",
    "name2": "Vignesh d"
}
```

{% tabs %}
{% tab title="200: Success Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "status": "completed",
    "reference_id": "e5dfe9b6-79f0-4e75-8451-9848adfea732",
    "result": {
        "name_match_score": 86
    },
    "requested_at": "2024-04-18T13:16:13.135Z",
    "completed_at": "2024-04-18T13:16:13.000Z"
}
```

{% endtab %}

{% tab title="400: Validation Error Response" %}

```json
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Invalid name1",
        "field": "name1",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}
{% endtabs %}
