Mobile Number IntelligenceMobile To PAN

Mobile Number to PAN Lookup

Retrieve the PAN number associated with a mobile number. Streamline KYC by auto-discovering identity from phone numbers.

curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-pan?mobile_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1738007863554,
  "transaction_id": "86d00546e7b24847a0ea66fec4e6f079",
  "sub_code": "SUCCESS",
  "message": "PAN details fetched successfully",
  "data": {
    "pan_number": "AOPPN843BB",
    "full_name": "NISAR AHMED",
    "full_name_split": [
      "",
      "",
      "NISAR AHMED"
    ],
    "masked_aadhaar": "XXXXXXXX4782",
    "address": {
      "line_1": "",
      "line_2": "",
      "street_name": "",
      "zip": "",
      "city": "",
      "state": "",
      "country": "",
      "full": ""
    },
    "email": null,
    "phone_number": null,
    "gender": "M",
    "dob": "1993-04-11",
    "input_dob": null,
    "aadhaar_linked": true,
    "dob_verified": false,
    "dob_check": false,
    "category": "person",
    "less_info": false
  }
}
GET
/v1/mobile-intelligence/mobile-to-pan
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
sub_codestring
messagestring
dataobject

Overview

This API retrieves PAN (Permanent Account Number) details associated with a user's phone number. The endpoint enables real-time verification of PAN information by accepting a mobile number as input.

When successful, the API returns comprehensive personal and financial identification data including the PAN number, full name, date of birth, gender, address components, and Aadhaar linkage status.

Response outcomes

The API returns successful responses when PAN details are found linked to the provided mobile number. However, responses with status code 200 may also indicate that no linked PAN details exist for that particular phone number, returning a DETAILS_NOT_FOUND sub-code instead.

Results include a category classification identifying the PAN holder type (such as "person") and flags indicating whether the PAN is Aadhaar-linked and whether date of birth information has been verified.