Skip to main content
GET
/
lookup
/
mobile-to-pan
cURL
curl --request GET \
  --url https://bgv.konnectnxt.com/api/lookup/mobile-to-pan \
  --header 'Authorization: Bearer <token>'
{
"status": "success",
"code": 200,
"message": "string",
"data": {
"mobile_number": "9087654321",
"full_name": "John Doe",
"id_number": "CX892I8Q0W"
},
"credits_used": 3,
"credits_left": 34
}
This API allows you to verify a PAN (Permanent Account Number) and fetch related details using a mobile number as input.
The Mobile to PAN API can retrieve the PAN only if the mobile number is linked to a credit or loan record. If no such record exists, the PAN will not be available. Please handle this limitation accordingly.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

mobile_number
string
required

10 Digit Mobile Number

Response

Success

status
enum<string>
required

Overall status of the API

Available options:
success,
error
code
integer
required

HTTP status code

message
string
required

Description of the response or error

data
object
required
credits_used
integer
required

Represents the total number of credits used in this request.

Example:

3

credits_left
integer
required

Represents the remaining credits available for use.

Example:

4040