India
Individual Pan Card Verification by Number

Individual PAN Card Verification by Number

Verifying Individual PAN Card by number

URL: /api/v1/individual-pan-card-number-verification/

Method: POST

Auth Required: Yes

Parameters

Parameter NameTypeDescription
pan_card_first_namestringFirst Name of Individual Pan
pan_card_middle_namestringIf mid name available
pan_card_last_namestringLast name of individual Pan
pan_card_numberstringNumber of Pan Card

Request json

{
    "pan_card_first_name": "abc",
    "pan_card_middle_name": "ijk",
    "pan_card_last_name": "xyz",
    "pan_card_number": "xxxxxxxxx1"
}

Response

The response will contain a JSON object with the following fields:
FieldTypeDescription
status_codeintStatus code
messagestringBrief Details of status
dataarrayReturn Data into data field as a list
Each object in the data array will have the following fields:
FieldTypeDescription
verifiedbooleanPan Card verification field
pan_statusstirngPan valid or not
pan_status_codestirngPan Card Satus for identification
messagestringVerification message from server
upstream_namestirngName of the business pan

Here is the example of a Individual Pan response

{
    "status_code": 200,
    "message": "Individual Pan Card Verification success",
    "data": {
        "verified": true,
        "pan_status": "VALID",
        "pan_status_code": "E",
        "message": "Verification completed with positive result",
        "upstream_name": "ABC"
    }
}