v1

latestOpenAPI 3.0.32026-07-14108241269.2 KB
Know Your Business

DIN to PAN Verification

Fetches PAN details linked to a DIN. This API is billable even when the DIN does not exist or is not linked to any PAN.

post/verify/din_to_pan

Request body

dinstring required

Director Identification Number (DIN)

consentstring required

User consent flag (must be 'Y')

consent_textstring required
user_idstring

Optional user reference identifier

Example request

{
  "din": "098123456",
  "consent": "Y",
  "consent_text": "I give my consent to DIN to PAN API to fetch my info",
  "user_id": "user_12345"
}

Response

Successful response (including billable non-data cases)

statusstring
chargeblestring
user_consentstring

Example response

{
  "status": "success",
  "result": {
    "name": "RAM SINGH",
    "pan": "ABCPD1234D"
  }
}