This API will verify the legitimacy of a PAN Account Number. You will need to pass the PAN Number to verify the status of the PAN account. On successful validation, the API will return the PAN holder’s first, middle, and last name along with the PAN status.
POST
https://api.veri5.cloud.robeeta.com/Veri5/VerifyPanDetails
Authorization: Api key
Header: Content-Type: application/json
Request Body
Response Body
Note: The output response PanAadharSeeding has the following flags returned
Flag | Description |
---|---|
Y | Aadhaar Seeding is Successful |
R | Aadhaar Seeding is Unsuccessful |
No Value (Blank) | Aadhaar is not seeded |
NA | Aadhaar seeding Not applicable |
curl -X POST \nhttps://api.veri5.cloud.robeeta.com/Veri5/VerifyPanDetails \\\n-H "Content-Type: application/json" \\\n-d '{\n "AccessKey": "string",\n "PanNumber": "string"\n}'
{ "Response": "string", "PanNumber": "string", "PanStatus": "string", "FirstName": "string", "LastName": "string", "MiddleName": "string", "PanHolderTitle": "string", "PanLastUpdated": "2022-01-01T00:00:00", "PanStatusDescription": "string", "PanAadharSeeding": "Y" }