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"
import requests
import json
url = "https://production.deepvue.tech/v1/verification/pan-plus?pan_number=example_string&name=John Doe"
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/v1/verification/pan-plus?pan_number=example_string&name=John Doe", {
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/v1/verification/pan-plus?pan_number=example_string&name=John Doe", 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/v1/verification/pan-plus?pan_number=example_string&name=John Doe')
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": 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"
}
}
{
"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,
"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"
}
/v1/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 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.
Last updated 4 weeks ago
Built with Documentation.AI