MCADIN Verification

DIN Verification — Director Details Lookup

Verify a Director Identification Number (DIN) and retrieve the director's name, associated companies, and appointment details.

curl -X GET "https://production.deepvue.tech/v1/verification/mca/din?id_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1738236706189,
  "transaction_id": "1e3f75a8-337f-4054-9b38-e8047c02b6ad",
  "data": {
    "director_data": {
      "din": "00000001",
      "name": "RATAN NAVAL TATA"
    },
    "company_data": [
      {
        "end_date": "-",
        "designation": "Director",
        "company_name": "RNT ASSOCIATES PRIVATE LIMITED",
        "begin_date": "05/03/2009",
        "cin/fcrn": "U74990MH2009PTC190764"
      }
    ],
    "llp_data": [
      {
        "end_date": "-",
        "llp_name": "AVANTI CAPITAL ADVISORS LLP",
        "designation": "Designated Partner",
        "begin_date": "09/04/2017",
        "llpin/fllpin": "AAJ-1011"
      }
    ]
  }
}
GET
/v1/verification/mca/din
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
dataobject

Overview

The DIN Verification API enables you to retrieve director master data using a Director Identification Number. This service provides verification information related to a given DIN, facilitating validation crucial for business operations and regulatory compliance.

The endpoint retrieves director identification details from the Ministry of Corporate Affairs (MCA) database, returning associated director information along with linked company and Limited Liability Partnership (LLP) data.

Successful verification returns:

  • Director Data: DIN and director name
  • Company Data: Associated companies with CIN/FCRN, designation, and tenure dates
  • LLP Data: Associated partnerships with LLPIN/FLLPIN, designation, and tenure dates

When a DIN does not match MCA records, the API returns a 200 status code with a message indicating an invalid DIN rather than a standard error code, allowing applications to distinguish between genuine verification failures and system errors.