Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication (JWT format) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
mobile_number | String | Yes | The mobile number associated with the UAN (10 digits) |
{
"mobile_number": "8079028529"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the retrieved UAN information |
data.pf_uan | String | The 12-digit Universal Account Number |
data.client_id | String | Unique identifier for the request |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String or null | Additional information about the response |
message_code | String | Code indicating the status of the request |
{
"data": {
"pf_uan": "101667814011",
"client_id": "income_uan_lookup_ackopQnlrOjwRPcFWPWV"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid mobile number format",
"message_code": "invalid_input"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/income/epfo/find-uan' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "8079028529"
}'
{
"data": {
"pf_uan": "101667814011",
"client_id": "income_uan_lookup_ackopQnlrOjwRPcFWPWV"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}