---
title: "Verify CIN / MCA details v2"
method: POST
path: "/v2/verify/cin_mca_verification"
tags: ["Company Verification v2"]
---

# Verify CIN / MCA details v2

`POST /v2/verify/cin_mca_verification`

Looks up an Indian company by its Corporate Identification Number (CIN) against MCA records using the v2 verification wrapper. Returns company identity, status, and a brief of directors on a match.

**Response contract:** Every completed verification returns HTTP 200. A successful result returns `status: "success"` with `error_code: null` and a populated `data` object. A valid request with no matching record (or a business rejection) also returns HTTP 200 with `status: "failed"`, a non-null `error_code`, and `data: null`. Do not treat HTTP 200 alone as success — always branch on `status` and inspect `error_code`. Authenticate with your `X-Client-ID` and `X-API-KEY` headers. Transport, auth, and validation problems use standard 4xx/5xx status codes.

## Request body

- CinMcaVerificationRequest
  - `id_number` string, required — CIN to lookup (Corporate Identification Number). Example: `U99999DL2025PTC000001`

## Response `200`

Company details returned for the supplied CIN

- CinMcaVerificationResponse
  - `client_id` string
  - `company_id` string, required
  - `company_type` string
  - `company_name` string, required
  - `details` object
    - `company_info` object
      - `cin` string, required
      - `roc_code` string
      - `registration_number` string, required
      - `company_category` string
      - `class_of_company` string
      - `company_sub_category` string
      - `authorized_capital` string
      - `paid_up_capital` string
      - `number_of_members` string
      - `date_of_incorporation` string, date
      - `registered_address` string
      - `address_other_than_ro` string
      - `email_id` string
      - `listed_status` string
      - `active_compliance` string, nullable
      - `suspended_at_stock_exchange` string
      - `last_agm_date` string, date
      - `last_bs_date` string, date
      - `company_status` string, required
      - `status_under_cirp` string, nullable
    - `directors` object[]
      - `din_number` string, required
      - `director_name` string, required
      - `start_date` string, date, required
      - `end_date` string, date
      - `surrendered_din` string, nullable
    - `charges` object[]
  - `status` string, required
  - `chargeble` string
  - `user_consent` string

## Other responses

- `400` — Invalid request or business validation failed
- `401` — Unauthorized - Invalid or missing API key or client ID
- `422` — Request body validation failed
- `500` — Internal server error
- `503` — Vendor temporarily unavailable — verification could not be completed (IDTO_008). Retry shortly.

---

[API](https://skmtc.dev/idto/apis/verification-api.md) · [All operations](https://skmtc.dev/idto/apis/verification-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/idto/verification-api/revisions/e3d57dab8db4/schema)
