Verification API
CIN Verification API
Verify a CIN is valid and return the company's status and legal name.
GET /v1/verify/cin/{cin}
Overview
The CIN Verification API confirms whether a Corporate Identity Number is valid - checking both its format and its existence in MCA data - and returns the company's current status and legal name. It is a fast yes/no check for onboarding, forms and data cleaning.
- Format + existence check
- Returns valid true/false
- Company status and legal name
- MCA-sourced
- Single fast call
How it works
- Generate an API key in your developer console (test keys are free).
- Call the endpoint with your Bearer key.
- Read the JSON response (standard envelope with credits info).
- Map the fields into your product or workflow.
Request & response
Requestcurl "https://api.infyner.com/v1/verify/cin/L74999WB1991PLC051738" \
-H "Authorization: Bearer pk_test_xxxxxxxx"
Response (sample){
"success": true,
"data": { "cin": "...", "valid": true, "format_valid": true, "status": "Active", "legal_name": "..." }
}
Where it's used
- Validate a CIN at onboarding
- Clean a CIN column in your data
- Form / input validation
- Pre-check before enrichment
Frequently asked questions
How is a CIN verified?
We check the 21-character CIN format and confirm the CIN exists in our MCA dataset, returning its current status and legal name.
Related APIs
Company Search API
Search Indian companies by name or CIN and get the top matching companies with their CIN.
Company CIN Lookup API
Get a company's core details from its CIN in real time - name, status, incorporation, registered office and ROC.
Company Profile API
Full company profile in one call - identity, capital, current and past directors, and registered charges.
Start building in minutes
Generate a free test key, call the sandbox, and go live when you're ready.
Get API access