| 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 |
|---|---|---|
CIN_Number | String | Valid Corporate Identification Number (CIN), LLPIN, FCRN, or Foreign LLP Identification Number |
documentType | String | Specifies the verification type (Company LLP Master Data) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result of the verification |
result.company_name | Name of the company or LLP |
result.cin | Corporate Identification Number (CIN) or equivalent identifier |
result.roc_code | Registrar of Companies (ROC) code |
result.class_of_company | Class of the company (e.g., Public, Private) |
result.company_status | Current status of the company (e.g., Active, Inactive) |
result.authorised_capital | Authorized capital of the company |
result.paid_up_capital | Paid-up capital of the company |
error | Contains error details if the verification 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 CIN_Number: \"U72900MH1995PLC095642\" # Company Identification Number\r\n documentType: \"Company LLP Master Data\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on CompanyLLPMasterDataResult {\r\n company_name\r\n cin\r\n roc_code\r\n class_of_company\r\n company_status\r\n authorised_capital\r\n paid_up_capital\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"businessVerification": {
"ok": true,
"message": "Business verification completed successfully",
"result": {
"__typename": "CompanyLLPMasterDataResult",
"company_name": "PROTEAN EGOV TECHNOLOGIES LIMITED",
"cin": "U72900MH1995PLC095642",
"roc_code": "ROC Mumbai",
"class_of_company": "Public",
"company_status": "ACTIVE",
"authorised_capital": "5000000000.0",
"paid_up_capital": "405403470.0"
}
}
}
}