| 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 |
|---|---|---|
companyName | String | Name of the company or LLP to search in MCA records |
documentType | String | Specifies the verification type (MCA Company Search Lite) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the search |
result.companies[].cin | Corporate Identification Number (CIN) of the company or LLP |
result.companies[].entity_name | Name of the company or LLP matching the search query |
error | Contains error details if the request fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_business_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 businessVerification(\r\n input: {\r\n companyName: \"indiconnect\"\r\n documentType: \"MCA Company Search Lite\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on MCACompanySearchLiteResult {\r\n request_id\r\n status_code\r\n companies {\r\n cin\r\n entity_name\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"businessVerification": {
"ok": true,
"message": "Business verification completed successfully",
"result": {
"__typename": "MCACompanySearchLiteResult",
"request_id": null,
"status_code": null,
"companies": [
{
"cin": "U62099MH2023PTC399289",
"entity_name": "INDICONNECT PAYTECH PRIVATE LIMITED"
},
{
"cin": "U74999OR2019PTC030269",
"entity_name": "INDICONNECT INFRATEL PRIVATE LIMITED"
}
]
}
}
}
}