| 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 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_business_app' \
--header 'service-key: sk_test_bf78b31a4b9275ca' \
--header 'Authorization: x-api-access indc_test_8cdbb53b09f50c3c:ac_test_bd6e115254f11a58' \
--header 'providercode: LLOK77FI' \
--header 'Content-Type: application/json' \
--data '{
"query": "mutation {\r\n verify(\r\n input: {\r\n CIN_Number: \"U62099MH2023PTC399289\" # 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 request_id\r\n status_code\r\n cin\r\n company_name\r\n roc_code\r\n registration_number\r\n company_category\r\n company_sub_category\r\n class_of_company\r\n authorised_capital\r\n paid_up_capital\r\n number_of_members\r\n date_of_incorporation\r\n registered_address\r\n alternative_address\r\n email_id\r\n listed_status\r\n active_compliance\r\n suspended_at_stock_exchange\r\n date_of_last_agm\r\n date_of_balance_sheet\r\n company_status\r\n }\r\n }\r\n }\r\n}\r\n ",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "CompanyLLPMasterDataResult",
"request_id": null,
"status_code": null,
"cin": "U62099MH2023PTC399289",
"company_name": "INDICONNECT PAYTECH PRIVATE LIMITED",
"roc_code": "Registrar Of Companies, Maharashtra, Navi Mumbai",
"registration_number": "399289",
"company_category": "Company Limited By Shares",
"company_sub_category": "Non-Govt Company",
"class_of_company": "Private",
"authorised_capital": "10000000.0",
"paid_up_capital": "2399330.0",
"number_of_members": null,
"date_of_incorporation": "19/03/2023",
"registered_address": "FL NO.2, PL NO. 61, MANGAL-MURTI APARTMENT BASAYYE NAGAR Aurangabad (MH) Aurangabad Aurangabad Maharashtra 431001",
"alternative_address": null,
"email_id": "cs@indiconnect.in",
"listed_status": "Unlisted",
"active_compliance": null,
"suspended_at_stock_exchange": "False",
"date_of_last_agm": "30/09/2025",
"date_of_balance_sheet": "31/03/2025",
"company_status": "ACTIVE"
}
}
}
}