PANPAN Aadhaar Link

PAN-Aadhaar Link Status Check

Check whether a PAN number is linked to Aadhaar. Essential for compliance with Income Tax mandates on PAN-Aadhaar linking.

curl -X GET "https://production.deepvue.tech/v1/verification/pan-aadhaar-link-status?pan_number=example_string&aadhaar_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": 1738041473852,
  "transaction_id": "c6cda846cedf4f4db1591651ef5a3cc9",
  "sub_code": "PAN_AADHAAR_NOT_LINKED",
  "message": "Input Pan is linked to some other Aadhaar"
}
GET
/v1/verification/pan-aadhaar-link-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

Overview

The PAN Aadhaar Link API enables verification of whether a PAN (Permanent Account Number) and Aadhaar number belong to the same individual. This forms part of Deepvue's KYC API suite for real-time identity verification.

Response outcomes

The API returns one of four primary scenarios:

  1. Documents are confirmed as linked to the same person.
  2. PAN is linked to a different Aadhaar number.
  3. Invalid PAN number or pattern format detected.
  4. Invalid Aadhaar number format detected.

Each response includes a transaction ID for tracking and logging purposes.