PANPAN Plus

PAN Plus API — Name, DOB & Address Lookup

Get extended PAN details including full name, date of birth, and registered address. Ideal for KYC onboarding and identity verification.

curl -X GET "https://production.deepvue.tech/v1/verification/pan-plus?pan_number=example_string&name=John Doe" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1737862347191,
  "transaction_id": "f75cc1f157ac46cd85abf58035adf994",
  "sub_code": "SUCCESS",
  "message": "Pan Verified Successfully.",
  "data": {
    "pan_number": "AAAPT0002F",
    "full_name": "RATAN NAVAL TATA",
    "full_name_split": [
      "RATAN",
      "NAVAL",
      "TATA"
    ],
    "masked_aadhaar": "XXXXXXXX8901",
    "gender": "M",
    "dob": "1937-12-28",
    "aadhaar_linked": true,
    "category": "person"
  }
}
GET
/v1/verification/pan-plus
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 Plus Authentication API provides additional details compared to basic PAN verification. You can verify additional details such as date of birth, gender, and Aadhaar linking status from a PAN number.

Beyond basic authentication, this endpoint returns supplementary information including date of birth, gender, email, phone, address details, and Aadhaar linkage status.

Response categories

The API handles three distinct PAN categories:

  • Individual PAN - Returns personal details including masked Aadhaar, gender, date of birth, and Aadhaar linking confirmation.
  • Firm PAN - Provides business entity information with registration date and firm name breakdown.
  • Invalid PAN - Returns an appropriate error indication for malformed or non-existent PAN numbers.