Mobile Number IntelligenceMobile To UAN

Mobile Number to UAN Lookup

Find the EPFO Universal Account Number linked to a mobile number. Useful for employment verification and PF account discovery.

curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-uan?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": null,
  "transaction_id": "string",
  "sub_code": "SUCCESS",
  "message": "UAN Number successfully fetched",
  "data": {
    "uan_number": "string"
  }
}
GET
/v1/mobile-intelligence/mobile-to-uan
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 the Unified Account Number (UAN) associated with a user's phone number. The endpoint accepts a mobile number as a query parameter and returns the linked UAN number if one exists.

Response outcomes

  • Successful retrieval — Returns the associated UAN number linked to the provided mobile number.
  • Details not found — When no UAN is linked to the mobile number, the API returns a 200 status with a DETAILS_NOT_FOUND sub-code.