EPFOPAN To UAN

PAN to UAN Lookup — Find EPFO Account

Find the Universal Account Number (UAN) linked to a PAN. Useful for employment verification and EPFO account discovery.

curl -X GET "https://production.deepvue.tech/v1/verification/epfo/pan-to-uan?pan_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": 1738342014954,
  "transaction_id": "44e1ac67f83c455badcfd4c2a99ac4cd",
  "sub_code": "SUCCESS",
  "message": "UAN Number fetched successfully",
  "data": {
    "uan_number": "101813402596"
  }
}
GET
/v1/verification/epfo/pan-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 Universal Account Number (UAN) linked to a given PAN (Permanent Account Number) from EPFO (Employees' Provident Fund Organisation) records. You can use this endpoint to look up UAN information for employment verification purposes under India's employment and tax regulatory framework.

The endpoint operates synchronously, returning results immediately within a single request-response cycle. If the provided PAN is linked to a UAN, the API returns the complete UAN account identification. If no UAN is associated with the PAN, the API confirms the absence of any linked record. Both outcomes return an HTTP 200 status.