India
Business Pan Card Verification by Number

Business PAN Card Verification by Number

Verifying Business PAN Card by number

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

Method: POST

Auth Required: Yes

Parameters

Parameter NameTypeDescription
pan_card_namestringName of business Pan Card
pan_card_numberstringNumber of Business Pan Card

Request json

{
    "pan_card_name": "XYZ PRIVATE LIMITED",
    "pan_card_number": "xxxxxxxxx0"
}

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 Business Pan response:

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