PAN to Father's Name Lookup
Retrieve the father's name linked to a PAN number. Helpful for identity matching and KYC cross-verification.
curl -X GET "https://production.deepvue.tech/v1/verification/pan-to-fathername?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/v1/verification/pan-to-fathername?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/v1/verification/pan-to-fathername?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/v1/verification/pan-to-fathername?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/v1/verification/pan-to-fathername?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": 1738007863367,
"transaction_id": "cc74ead3be1e4d6aac9dbc7510703a85",
"sub_code": "SUCCESS",
"message": "Pan details fetched successfully.",
"data": {
"father_name": "PRAVIN FADTE",
"full_name": "PRABHA CHANDRAMOHAN FADTE",
"full_name_split": [
"PRABHA",
"CHANDRAMOHAN",
"FADTE"
],
"individual_pan": true
}
}
{
"code": 200,
"timestamp": 1737862347191,
"transaction_id": "142a24d7c61544c080b18d587f2f1767",
"sub_code": "INVALID_PAN_NUMBER",
"message": "Invalid Pan Number."
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738007665809,
"transaction_id": "fec58bfc47a047b8bac7bfafa17a27d7",
"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-to-fathername
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
This API allows you to find the father's name associated with the provided PAN number. When provided with a valid PAN, the service returns associated details including the father's name, the individual's full name, and a split version of the name into component parts.
Successful queries return the father's name along with the complete name of the PAN holder and confirmation of whether the PAN is for an individual entity rather than a business or organization.
Invalid PAN numbers receive a 200 response with an INVALID_PAN_NUMBER sub-code rather than an error status. PAN format validation occurs separately; improperly formatted PANs trigger a 422 response.
Last updated 4 weeks ago
Built with Documentation.AI