DIN Verification
Director Identification Number (DIN) is a unique eight-digit identifier issued by the Ministry of Corporate Affairs (MCA) to individuals intending to become a director or already serving as a director in a comdiny.
DIN Structure
| Key | Description | 
|---|---|
| Director Identification Number | It is an eight-digit numeric identifier issued to directors by the MCA. | 
| Name | Full name of the director associated with the DIN. | 
API Integration
DIN verification can be performed either directly using the Verify DIN API
Direct
Request
{
    "din": "0089XXXX"
}
Response
If the DIN is valid
{
    "code": 0,
    "message": "Success",
    "data": {
        "llpData": [],
        "companyData": [
            {
                "endDate": "30/09/2014",
                "companyName": "XXXXXX PRIVATE LIMITED",
                "beginDate": "01/08/2014",
                "cinOrFcrn": "XXXXXXX"
            },
            {
                "endDate": "30/09/2014",
                "companyName": "XXXXXXX PRIVATE LIMITED",
                "beginDate": "31/07/2014",
                "cinOrFcrn": "XXXXX"
            }
        ],
        "directorData": {
            "din": "00XXXX35",
            "name": "XXXXX KUMAR"
        }
    }
}
If the DIN is invalid
{
  "code": 0,
  "message": "Success",
  "data": {
    "status": "INVALID",
    "message": "Invalid DIN"
  }
}