| 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 (CIN Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the lookup was successful (true / false) |
message | Status message describing the result of the lookup |
result.result[].companyName | Name of the company or LLP matching the search query |
result.result[].companyID | Corresponding CIN or LLP Identification Number of the entity |
error | Contains error details if the lookup fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v1' \
--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 companyName: \"infosys\",\r\n documentType:\"Cin Verification\",\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on CinResult {\r\n result\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"result": [
{
"companyName": "infosys",
"companyID": "U72200RJ1995PLC010248"
},
{
"companyName": "infosys limited",
"companyID": "L85110KA1981PLC013115"
},
{
"companyName": "infosys bpm limited",
"companyID": "U72200KA2002PLC030310"
},
{
"companyName": "infosystem and solutions private limited",
"companyID": "U72200BR2006PTC012535"
},
{
"companyName": "infosys bpo americas llc",
"companyID": "F06480"
},
{
"companyName": "infosystems exports private limited",
"companyID": "U72200MH2000PTC124158"
},
{
"companyName": "infosys automation systems limited",
"companyID": "U30007MP1996PLC011376"
},
{
"companyName": "infosystems international (india) private limited",
"companyID": "U72200MH1998PTC114663"
},
{
"companyName": "infosys autocad systems (india) limited",
"companyID": "U30007MP1998PLC012633"
},
{
"companyName": "infosys consultants pvt ltd",
"companyID": "U74140PN1981PTC024733"
},
{
"companyName": "m.s.infosystems pvt ltd",
"companyID": "U72200KA2001PTC029574"
},
{
"companyName": "infosystems private limited",
"companyID": "U32201GJ1980PTC003743"
},
{
"companyName": "infosys computers private limited",
"companyID": "U74999DL1989PTC037382"
},
{
"companyName": "infosys consultants pvt ltd",
"companyID": "U99999MH1981PTC024733"
},
{
"companyName": "infosystems pvt. ltd.",
"companyID": "U72200OR1994PTC003484"
},
{
"companyName": "infosys point private limited",
"companyID": "U80902BR1995PTC006700"
},
{
"companyName": "infosystem softwares & consultants pvt. ltd",
"companyID": "U30006TN1992PTC024038"
},
{
"companyName": "infosystem services private limited",
"companyID": "U72300BR2008PTC013434"
},
{
"companyName": "infosyst adcon services llp",
"companyID": "AAN-5420"
},
{
"companyName": "infosys consulting india limited",
"companyID": "U72200KA2009PLC050684"
},
{
"companyName": "infosys digital systems pvt ltd",
"companyID": "U85110KA1986PTC007512"
},
{
"companyName": "infosys green forum",
"companyID": "U85300KA2021NPL151191"
}
]
},
"error": null
}
}
}