v1

latestOpenAPI 3.0.32026-07-14108241269.2 KB
PAN to CIN

PAN to CIN Verification

Fetches CIN(s) mapped to a PAN number. Requires valid customer consent. Billable even when PAN is invalid, inactive, or no records are found.

post/verify/pan_to_cin

Request body

pan_numberstring required

PAN number of the business owner

user_idstring

Optional user reference identifier

Example request

{
  "pan_number": "ABCPD1234D",
  "user_id": "user_12345"
}

Response

Successful response (including billable non-data cases)

statusstring
chargeblestring
user_consentstring

Example response

{
  "status": "success",
  "result": {
    "cin": [
      "U65432TG2010PTC098765",
      "U65432TG2010PTC987654"
    ],
    "cin_details": [
      {
        "cin": "U65432TG2010PTC098765",
        "entity_name": "ABC PRIVATE LIMITED"
      }
    ]
  }
}