PANPAN KRA Status

PAN KRA Verification — KYC Registration Check

Check the KYC Registration Agency (KRA) status for any PAN number. Verify if the holder's KYC is validated, registered, or pending.

curl -X GET "https://production.deepvue.tech/v1/verification/pan-kra-status?pan_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1738007863352,
  "transaction_id": "e08573c50c0b456aa2a9da636bbb9aa5",
  "sub_code": "SUCCESS",
  "message": "PAN-KRA status fetched successfully",
  "data": {
    "pan_number": "AFVPG9986M",
    "pan_kra_status": true,
    "pan_kra_status_description": "KYC REGISTERED WITH CVLKRA",
    "kra_status": true,
    "pan_kra_agency": "CVL KRA",
    "modification_status_details": {
      "modification_status": "KYC REGISTERED WITH CVLKRA",
      "modification_status_date": "2016-06-28T16:42:11",
      "modification_remarks": "--"
    }
  }
}
GET
/v1/verification/pan-kra-status
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

The PAN KRA Verification API facilitates the verification of an individual or entity's PAN (Permanent Account Number) through the KRA (KYC Registration Agency) system. This endpoint is designed to verify identity documents and financial credentials in real-time for expedited Know Your Customer checks.

Successful responses include the PAN number, KRA registration status, status descriptions, the registering KRA agency name, and modification status details with timestamps and remarks.