MCAPAN To DIN

PAN to DIN Lookup

Find the Director Identification Number (DIN) linked to a PAN. Useful for verifying company directors during due diligence.

curl -X GET "https://production.deepvue.tech/v1/business-compliance/pan-to-din?pan_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": 1738135067385,
  "transaction_id": "ccf27abf08e1463091c76b0bbd595aa6",
  "sub_code": "SUCCESS",
  "message": "DIN details fetched successfully.",
  "data": {
    "din_number": "00001695",
    "din_status": "Approved",
    "pan_number": "AADPA3705F",
    "first_name": "MUKESH",
    "middle_name": "DHIRUBHAI",
    "last_name": "AMBANI",
    "date_of_birth": "1957-04-19",
    "father_first_name": "DHIRUBHAI",
    "father_middle_name": "HIRACHAND",
    "father_last_name": "AMBANI",
    "resident_of_india": "Y",
    "membership_number": ""
  }
}
GET
/v1/business-compliance/pan-to-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
sub_codestring
messagestring
dataobject

Overview

This API retrieves Director Identification Number (DIN) details and associated information from a provided PAN (Permanent Account Number). It enables verification of PAN numbers and fetches linked DIN information when available.

When a PAN is successfully matched to a DIN, the API returns:

  • DIN number and approval status
  • Director's full name (first, middle, last)
  • Date of birth
  • Father's name details
  • Resident status in India
  • Membership number information

The API returns a 200 status code even when a PAN is invalid or no linked DIN exists, with the message: "No Linked DIN found or Invalid Pan."