PANPAN Basic

PAN Verification API — Validate Name & Status

Verify any PAN number instantly and retrieve the holder's name, category, and active status. Real-time validation against the Income Tax database.

curl -X GET "https://production.deepvue.tech/v1/verification/panbasic?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": 1738040933033,
  "transaction_id": "ece94d5e2749482faa10184962e9e34a",
  "data": {
    "@entity": "pan",
    "pan": "AAAPT0002F",
    "full_name": "RATAN NAVAL TATA",
    "status": "VALID",
    "category": "Individual",
    "name_information": {
      "pan_name_cleaned": "Ratan Naval Tata"
    }
  }
}
GET
/v1/verification/panbasic
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
dataobject

Overview

The PAN Basic API enables verification of Permanent Account Numbers (PANs), which serve as universal identification keys for tracking financial transactions with taxable components to prevent tax evasion. The API validates PAN numbers and provides basic information including name, category, and status.

PAN validity is maintained regardless of address changes throughout India. You can submit a PAN number and optionally a name to retrieve verification results.

Successful verification returns the PAN status (VALID or INVALID), the associated full name, taxpayer category (such as Individual), and cleaned name information. Invalid PANs are flagged with an INVALID status while still returning the category classification.