Mobile Number IntelligenceMobile To Name

Mobile Number to Name Lookup

Find the name linked to any Indian mobile number. Useful for identity verification, pre-fill onboarding, and fraud screening.

curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-name?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": 1738036065614,
  "transaction_id": "4db2591f472a47679f46780a39e642c8",
  "sub_code": "SUCCESS",
  "message": "Name fetched successfully",
  "data": {
    "name": "MOSD NIHARIKA"
  }
}
GET
/v1/mobile-intelligence/mobile-to-name
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

The Mobile to Name API retrieves the name associated with a given phone number. It enables businesses to fetch user identity information linked to a mobile number for verification and onboarding purposes.

The API accepts a mobile phone number as a query parameter and returns the associated user's name if available. The service searches against available data sources to match the provided number to registered user information.

Response outcomes

The API supports two primary success scenarios:

  • Name successfully retrieved — Returns the matched name associated with the mobile number.
  • Details not found — Returns a successful response but indicates no matching name exists for the provided number.