| Header | Description |
|---|---|
myAppId | Application identifier used for service authentication |
service-key | Unique service key provided for accessing the verification service |
Authorization | API authorization credentials for secure access |
Content-Type | Specifies the request payload format (application/json) |
| Parameter | Type | Description |
|---|---|---|
establishmentId | String | Unique EPFO establishment ID |
name | String | Name of the employee to be searched |
name2 | String | Name of the establishment/company |
employmentMonth | String | Employment month in MM/YYYY format |
documentType | String | Specifies the verification type (epfo employee name search_s) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.establishment_id | EPFO establishment ID |
result.establishment_name | Name of the establishment |
result.employee_name | Name of the employee searched |
result.employment_month | Employment month for the record |
result.match | Indicates whether an exact match was found (true / false) |
result.search_result[].establishment_name | Name of the matched establishment |
result.search_result[].office_name | EPFO office name associated with the establishment |
result.search_result[].establishment_id | Establishment ID of the matched record |
result.search_result[].address | Address of the establishment |
result.search_result[].payment_details[].date_of_credit | Date when the EPF contribution was credited |
result.search_result[].payment_details[].amount | Contribution amount credited |
result.search_result[].payment_details[].wage_month | Wage month for the contribution |
result.search_result[].payment_details[].ecr | Indicates whether ECR (Electronic Challan cum Return) is filed |
result.search_result[].payment_details[].trrn | Transaction Reference Number (TRRN) |
error | Contains error details if verification fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v2_2_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n documentType: \"epfo employee name search_s\"\r\n establishmentId: \"THTHA2524759000\"\r\n name2: \"DIGITALFLAKE SOLUTIONS PRIVATE LIMITED\"\r\n name: \"TUKARAM GOROBA WAGHMARE\"\r\n employmentMonth: \"08/2025\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on EPFOEmployeeNameSearchResult {\r\n establishment_id\r\n establishment_name\r\n employee_name\r\n employment_month\r\n match\r\n search_result {\r\n establishment_name\r\n office_name\r\n establishment_id\r\n address\r\n payment_details {\r\n date_of_credit\r\n amount\r\n wage_month\r\n ecr\r\n trrn\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "EPFOEmployeeNameSearchResult",
"establishment_id": "THTHA2524759000",
"establishment_name": "DIGITALFLAKE SOLUTIONS PRIVATE LIMITED",
"employee_name": "TUKARAM GOROBA WAGHMARE",
"employment_month": "08/2025",
"match": false,
"search_result": [
{
"establishment_name": "DIGITALFLAKE SOLUTIONS PRIVATE LIMITED",
"office_name": "THANE (MUMBAI-II)",
"establishment_id": "THTHA2524759000",
"address": "J1403, 14th FLOOR, RAHEJA VISTAS CHANDIVALI, POWAI, MUMBAI 400072",
"payment_details": [
{
"date_of_credit": "15/09/2025",
"amount": "13,491",
"wage_month": "08/2025",
"ecr": "YES",
"trrn": "3152507027509"
}
]
}
]
}
}
}
}