---
title: "CIN Verification API Reference"
description: "Verify Company Identification Numbers (CIN) against MCA records — returns company name, incorporation details, directors, and CIN status."
canonical: "https://eps.eko.in/docs/cin"
---


> **Canonical URL:** https://eps.eko.in/docs/cin
> This is a machine-readable Markdown version of the page for AI agents and LLMs. The primary (HTML) version lives at the canonical URL above.

# CIN Verification API Reference

`POST https://staging.eko.in/ekoapi/v3/tools/kyc/cin`

Verify Company Identification Numbers (CIN) against MCA records — returns company name, incorporation details, directors, and CIN status.

The CIN Verification API lets you validate a Company Identification Number (CIN) against Ministry of Corporate Affairs records in real time. It returns the registered company name, registration number, incorporation date, CIN status (active / struck-off / dormant / under liquidation), company email, country of incorporation, and a full list of directors with their DIN, designation, address, and date of birth. Use it for KYB onboarding, vendor due diligence, lending workflows, and corporate compliance checks.

> View product & pricing details: [CIN Verification](https://eps.eko.in/products/cin-verification-api.md)

## Body parameters

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| initiator_id | string | yes | Registered mobile number of the API user (see Platform Credentials). e.g. 9962981729 |
| user_code | string | yes | User code of the retailer/agent the service is run for. e.g. 20810200 |
| client_ref_id | string | no | Unique reference id per API call, generated by your system. e.g. REQ-20260101-001 |
| cin | string | yes | Alphanumeric Company Identification Number (CIN) assigned by the Ministry of Corporate Affairs, India. e.g. U72900KA2015PTC082988 |

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| developer_key | string | yes | Static API key issued to your account after KYC. |
| secret-key | string | yes | Dynamic per-request signature: base64(HMAC-SHA256(timestamp, base64(access_key))). |
| secret-key-timestamp | string | yes | Current time in milliseconds since UNIX epoch, used to compute secret-key. Must match server time. |
| content-type | string | yes | application/json e.g. application/json |

## Response

⭐ marks fields highlighted as verifiable.

| Field | Type | Description |
| --- | --- | --- |
| status | number | Primary success indicator (0 = success). |
| message | string | Human-readable response / error message. |
| response_status_id | number | Granular status id; see the shared error-codes table. |
| response_type_id | number | A unique id for every possible response shape (success or error) — useful for client logic branching and analytics. |
| data | object | API-specific response payload. |
| data.cin ⭐ | string | The CIN submitted in the request, echoed back for confirmation. |
| data.company_name ⭐ | string | MCA-registered legal name of the company. |
| data.registration_number ⭐ | number | Numeric company registration number assigned by the Registrar of Companies. |
| data.incorporation_date ⭐ | string | Date the company was incorporated, in YYYY-MM-DD format. |
| data.cin_status ⭐ | string | Current status of the CIN as recorded by MCA — e.g. Active, Strike-Off, Dormant, Under Liquidation. |
| data.email | string | Company email address from MCA records. |
| data.incorporation_country ⭐ | string | Country in which the company was incorporated. |
| data.director_details ⭐ | array | List of directors of the company as registered with MCA. |
| data.director_details.name ⭐ | string | Full legal name of the director. |
| data.director_details.din ⭐ | string | Director Identification Number (DIN) allotted by MCA. |
| data.director_details.designation ⭐ | string | Role/designation of the director at the company. |
| data.director_details.dob | string | Date of birth of the director, in YYYY-MM-DD format. |
| data.director_details.address | string | Registered address of the director as filed with MCA. |

## Example request

```json
{
  "initiator_id": "9962981729",
  "user_code": "20810200",
  "client_ref_id": "REQ-20260101-001",
  "cin": "U72900KA2015PTC082988"
}
```

## Example response

```json
{
  "status": 0,
  "response_status_id": 0,
  "message": "CIN verification successful",
  "response_type_id": 1388,
  "data": {
    "cin": "U72900KA2015PTC082988",
    "company_name": "Acme Technologies Pvt Ltd",
    "registration_number": 82987,
    "incorporation_date": "2015-09-23",
    "cin_status": "Active",
    "email": "contact@acmetech.in",
    "incorporation_country": "India",
    "director_details": [
      {
        "name": "Rahul Mehta",
        "din": "07168822",
        "designation": "Director",
        "dob": "1985-03-12",
        "address": "123 MG Road, Bengaluru, Karnataka 560001"
      },
      {
        "name": "Priya Sharma",
        "din": "07168826",
        "designation": "Director",
        "dob": "1988-07-25",
        "address": "45 Residency Road, Bengaluru, Karnataka 560025"
      }
    ]
  }
}
```

## Error scenarios

| Status | Scenario |
| --- | --- |
| 200 | Invalid or malformed CIN |
| 200 | CIN not found in MCA records |
| 403 | Authentication failure — invalid secret-key or timestamp |
| 200 | Missing required body parameter (cin) |
