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"
import requests
import json
url = "https://production.deepvue.tech/v1/verification/pan-aadhaar-link-status?pan_number=example_string&aadhaar_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/v1/verification/pan-aadhaar-link-status?pan_number=example_string&aadhaar_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/v1/verification/pan-aadhaar-link-status?pan_number=example_string&aadhaar_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/v1/verification/pan-aadhaar-link-status?pan_number=example_string&aadhaar_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": 1738041473852,
"transaction_id": "c6cda846cedf4f4db1591651ef5a3cc9",
"sub_code": "PAN_AADHAAR_NOT_LINKED",
"message": "Input Pan is linked to some other Aadhaar"
}
{
"code": 200,
"timestamp": 1738041438134,
"transaction_id": "673b86d50b574ecabb7a1dc9cf2b49df",
"sub_code": "INVALID_PAN_NUMBER",
"message": "Invalid Pan Number"
}
{
"code": 422,
"timestamp": 1738007802265,
"transaction_id": "34f8989186d741b38cd64f8b54ed4580",
"sub_code": "INVALID_INPUT",
"message": "Invalid Pan Pattern."
}
{
"code": 200,
"timestamp": 1738041391833,
"transaction_id": "bc2fbe4956904c568214710fedc31b2f",
"sub_code": "INVALID_AADHAAR_NUMBER",
"message": "Invalid Aadhaar Number"
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": null,
"transaction_id": "string",
"sub_code": "INVALID_INPUT",
"message": "Invalid Pan Pattern."
}
{
"detail": "Internal Server Error"
}
{
"code": null,
"timestamp": null,
"transaction_id": "string",
"message": "Source Unavailable"
}
/v1/verification/pan-aadhaar-link-status
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 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:
- Documents are confirmed as linked to the same person.
- PAN is linked to a different Aadhaar number.
- Invalid PAN number or pattern format detected.
- Invalid Aadhaar number format detected.
Each response includes a transaction ID for tracking and logging purposes.
Last updated 4 weeks ago
Built with Documentation.AI