Skip to main content
GET
/
pan
/
bulk
Get Status.
curl --request GET \
  --url https://sandbox.cashfree.com/verification/pan/bulk \
  --header 'x-client-id: <api-key>' \
  --header 'x-client-secret: <api-key>'
{
  "bulk_verification_id": "1123456",
  "reference_id": "515",
  "count": 1,
  "entries": {
    "father_name": "John Doe",
    "message": "VALID",
    "name_match_result": "PARTIAL",
    "name_match_score": "0.7",
    "name_provided": "John De",
    "pan": "ABCDP3011E",
    "reference_id": 1234567,
    "registered_name": "John Doe",
    "status_code": "VALID",
    "type": "Individual",
    "valid": true
  }
}

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.

Headers

x-cf-signature
string

Send the signature if two-factor authentication is selected as Public Key. More details

x-api-version
string

It is the API version. To receive the aadhaar seeding status in the response, use any date after 2022-09-12

Query Parameters

reference_id
string
default:1234567
required

It is the unique ID created by Cashfree Payments that you receive in the response of Verify PAN in Bulk API.

bulk_verification_id
string
default:BV234253
required

It is the unique ID you created to identify the Verify PAN in Bulk API request.

Response

Success response for verifying a large number of PAN information

bulk_verification_id
string

It displays the unique ID created by you to identify the bulk verification request.

Example:

"1123456"

reference_id
string

It displays the unique ID created by Cashfree Payments for reference purposes.

Example:

"515"

count
integer<int64>
Example:

1

entries
object[]

It contains the details of PAN for verification.

Minimum array length: 1
Example:
{
"father_name": "John Doe",
"message": "VALID",
"name_match_result": "PARTIAL",
"name_match_score": "0.7",
"name_provided": "John De",
"pan": "ABCDP3011E",
"reference_id": 1234567,
"registered_name": "John Doe",
"status_code": "VALID",
"type": "Individual",
"valid": true
}