MCADIN To PAN

DIN to PAN Lookup

Retrieve the PAN number linked to a Director Identification Number. Cross-verify director identity for compliance checks.

curl -X GET "https://production.deepvue.tech/v1/business-compliance/din-to-pan?din_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": "a1faecaf4cb64d6e9cf9113392203086",
  "sub_code": "SUCCESS",
  "message": "PAN details fetched successfully.",
  "data": {
    "din_number": "00000001",
    "din_status": "Approved",
    "pan_number": "AAAPT0002F",
    "first_name": "RATAN",
    "middle_name": "NAVAL",
    "last_name": "TATA",
    "date_of_birth": "1937-12-28",
    "father_first_name": "NAVAL",
    "father_middle_name": "HORMUSJI",
    "father_last_name": "TATA",
    "resident_of_india": "Y",
    "membership_number": ""
  }
}
GET
/v1/business-compliance/din-to-pan
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 fetches the PAN Number and its details from the DIN Number. It enables verification of Director Identification Numbers by retrieving the associated Permanent Account Number information.

Successful responses return comprehensive director information including name components, date of birth, father's details, residency status, and associated PAN. The API also handles cases where no linked PAN exists or the provided DIN is invalid.

The API provides detailed error responses covering authentication failures, token expiration, invalid DIN formatting, and source system unavailability, with appropriate HTTP status codes and descriptive messages for troubleshooting.