PAN Plus V2 — With Aadhaar Seeding Status
Enhanced PAN verification with Aadhaar seeding status, full name, DOB, and address. The most comprehensive PAN lookup available.
curl -X GET "https://production.deepvue.tech/v2/verification/pan-plus?pan_number=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://production.deepvue.tech/v2/verification/pan-plus?pan_number=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v2/verification/pan-plus?pan_number=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v2/verification/pan-plus?pan_number=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v2/verification/pan-plus?pan_number=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"code": 200,
"timestamp": 1741205460834,
"transaction_id": "1030ac206a564103b68c45eaa924d6b4",
"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",
"address": {
"line_1": "HAKEKAI 169B- 171",
"line_2": "LOWER COLABA ROAD",
"street_name": "Mumbai",
"zip": "400005",
"city": "Mumbai",
"state": "MAHARASHTRA",
"country": "INDIA",
"full": "HAKEKAI 169B- 171 LOWER COLABA ROAD Mumbai Mumbai MAHARASHTRA 400005"
},
"email": "hd*****ra@tata.com",
"phone_number": "92XXXXXX26",
"gender": "M",
"dob": "1937-12-28",
"aadhaar_linked": true,
"category": "person"
}
}
{
"code": 200,
"timestamp": 1738036065103,
"transaction_id": "3d47f93ad21045c3b5fa2ebb20a40289",
"sub_code": "SUCCESS",
"message": "Pan Verified Successfully.",
"data": {
"pan_number": "AAHFJ8299B",
"full_name": "JAY PACKAGING",
"full_name_split": [
"",
"",
"JAY PACKAGING"
],
"masked_aadhaar": null,
"address": {
"line_1": "",
"line_2": "",
"street_name": "",
"zip": "",
"city": "",
"state": "",
"country": "",
"full": ""
},
"email": null,
"phone_number": null,
"gender": "",
"dob": "2011-01-20",
"aadhaar_linked": null,
"category": "firm"
}
}
{
"code": 200,
"timestamp": 1738039208921,
"transaction_id": "d96979bc787a49ff98dfb2a7791b9741",
"sub_code": "INVALID_PAN_NUMBER",
"message": "Invalid Pan Number."
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738036065614,
"transaction_id": "53c826a0819a49ec9ca7aa9701aa4580",
"sub_code": "INVALID_INPUT",
"message": "Invalid Pan Pattern."
}
{
"detail": "Internal Server Error"
}
/v2/verification/pan-plus
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
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
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
Responses
Overview
The PAN Plus V2 API provides comprehensive identity verification by extracting supplementary information beyond standard PAN validation. You can authenticate and retrieve details including date of birth, gender, residential address, email, and phone number from a PAN identifier.
Key features
- Address verification - The system confirms residential location data with high precision.
- Masked contact information - Email addresses and mobile numbers are returned in obfuscated format for security purposes (for example,
hd*****ra@tata.comand92XXXXXX26). - Streamlined integration - Migration from the previous version requires only updating the API endpoint URL, minimizing implementation complexity.
The system returns differentiated response structures for individual PAN holders versus firm registrations. Firm accounts typically contain minimal contact and demographic data compared to individual records.
Strict adherence to data protection requirements is required, particularly regarding Aadhaar information handling across related services. Non-compliance with Indian regulations may carry regulatory consequences.
Last updated 4 weeks ago
Built with Documentation.AI