# MCA India - Company Master Data & Director Lookup (CIN) (`thirdwatch/mca-india-scraper`) Actor

Look up Indian companies by CIN on the Ministry of Corporate Affairs registry. Returns company master data, directors (with DIN), registered address, authorized/paid-up capital, incorporation date, RoC, status, and charges. KYB / due diligence / credit risk. No subscription required.

- **URL**: https://apify.com/thirdwatch/mca-india-scraper.md
- **Developed by:** [Thirdwatch](https://apify.com/thirdwatch) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## MCA India - Company Master Data & Director Lookup (CIN)

> Verify any Indian company by CIN or name — master data, directors, capital, RoC, and status — without an MCA21 subscription.

Look up any Indian company registered with the Ministry of Corporate Affairs by **CIN** (Corporate Identification Number) or **company name**. Returns master data, directors with DIN, registered address, authorized and paid-up capital, RoC, status, and charges.

Built for **KYB**, **credit risk**, **due diligence**, and **supplier verification** workflows. No subscription to MCA21 required.

### What you get

A clean, structured record for every Indian company you query — including directors, capital, registered address, and status. Input accepts CINs (preferred, exact match) or company names (resolved via search). Even when upstream lookup fails, the actor returns whatever can be derived from the CIN itself (state, year, class, industry code).

### Output fields

| Field | Description |
|-------|-------------|
| `cin` | 21-character Corporate Identification Number |
| `company_name` | Legal name of the company |
| `status` | Active / Struck Off / Under Liquidation / Dormant |
| `company_type` | Public / Private / OPC / Section 8 |
| `class_of_company` | Structural class |
| `company_category` | MCA-assigned category |
| `incorporation_date` | Date of incorporation (from MCA) |
| `incorporation_year` | Year derived from CIN |
| `authorized_capital` | Authorized share capital in INR |
| `paid_up_capital` | Paid-up share capital in INR |
| `registered_address` | Complete postal address |
| `email` | Registered contact email |
| `pan` | PAN number associated with the company |
| `roc` | Registrar of Companies jurisdiction |
| `last_agm_date` | Date of last Annual General Meeting |
| `last_balance_sheet_date` | Most recent balance sheet filing date |
| `state` | State derived from CIN |
| `state_code` | 2-letter state code |
| `nic_industry_code` | 5-digit NIC industry classification |
| `listing_status` | Listed or Unlisted (derived from CIN) |
| `directors` | Array of `{name, din, designation}` |
| `data_source` | Origin tag for the record |

### Example output

```json
{
    "cin": "L17110MH1973PLC019786",
    "company_name": "Reliance Industries Limited",
    "status": "Active",
    "incorporation_date": "08 May, 1973",
    "company_type": "Public Limited",
    "authorized_capital": "₹50,000 Cr",
    "paid_up_capital": "₹13,532.5 Cr",
    "registered_address": "3rd Floor, Maker Chambers IV, 222, Nariman Point, Mumbai - 400021",
    "email": "investor_relations@ril.com",
    "pan": "AAACR5055K",
    "roc": "RoC-Mumbai",
    "listing_status": "Listed",
    "state": "Maharashtra",
    "state_code": "MH",
    "incorporation_year": "1973",
    "company_class": "PLC",
    "company_class_description": "Public Limited Company",
    "nic_industry_code": "17110",
    "registration_number": "019786",
    "directors": [
        {"name": "Mukesh Dhirubhai Ambani", "din": "00001695", "designation": "Managing Director"}
    ],
    "data_source": "mca-public"
}
````

### Input parameters

| Parameter | Required | Description |
|-----------|----------|-------------|
| `queries` | Yes | CINs (preferred) or company names. Mixed input allowed. |
| `maxResults` | No | Cap on records returned. Default 5, max 10000. |
| `includeDirectors` | No | Include the directors list per company. Default `true`. |
| `proxy` | No | Proxy configuration. Pre-configured defaults work out of the box. |

### CIN format reference

`L17110MH1973PLC019786` decomposes as:

- `L` — Listed (or `U` for unlisted)
- `17110` — NIC industry code
- `MH` — state (Maharashtra)
- `1973` — year of incorporation
- `PLC` — Public Limited Company (PTC=Private, OPC=One Person, NPL=Non-profit, etc.)
- `019786` — 6-digit registration serial

Even if a lookup fails upstream, the actor returns the state, year, class, and industry code parsed directly from the CIN itself.

### Use cases

- **Compliance & KYB teams**: verify vendors, customers, and partners before onboarding
- **Credit risk analysts**: cross-check borrowers against MCA master data and insolvency registries
- **Fraud prevention**: confirm company existence and director identities at signup
- **Sales & BDR teams**: enrich leads with authorized capital, paid-up capital, and director data
- **Legal & audit**: pull official RoC, incorporation, and status for diligence packs
- **Journalists & researchers**: track corporate structures, director interlocks, and ownership shifts

### Limitations

- **Pass CINs, not company names.** Company-name lookups are best-effort and currently unreliable — look up a company's CIN at mca.gov.in or zaubacorp.com first, then pass the CIN here for an exact, reliable match.
- **Financial statements (revenue, EBITDA, profit) are behind upstream paywalls** and are not returned. Master data + directors + charges are public and included.
- Some companies with very old filings may have partial data (missing email, PAN, or last AGM) — the actor returns whatever MCA has published.
- Polite rate-limiting (~2s between lookups) keeps requests under the radar; large runs take proportionally longer.

### Compared to alternatives

There is no direct MCA India lookup actor on the Apify Store with structured output + director extraction. Generic Indian-company enrichment tools either:

- Require a paid API key (Tofler, Signzy, Zoho) and gate directors behind higher plans, or
- Scrape MCA21 directly, which requires a subscription account.

This actor uses public registry data — no account, no API key, structured JSON you can drop into your CRM or risk system.

### Pairs well with

- [IBBI Insolvency India](https://apify.com/thirdwatch/ibbi-scraper?fpr=9m2cd6) — bankruptcy / liquidation check for the same company
- [GST Verification India](https://apify.com/thirdwatch/gst-verification-scraper?fpr=9m2cd6) — GSTIN → business details
- [LinkedIn Profile Scraper](https://apify.com/thirdwatch/linkedin-profile-scraper?fpr=9m2cd6) — enrich director profiles

### FAQ

**Does this use MCA21 directly?**
No — MCA21 requires a paid subscription. This actor uses publicly disclosed company master data sources.

**Do I get historical directors or just the current board?**
Current directors and key managerial personnel as published. Historical resignations aren't included.

**Can I look up by company name alone?**
Yes, but name matches are approximate. For definitive results, pass the CIN.

**What about LLPs and partnership firms?**
LLPs have a separate identifier (LLPIN). This actor focuses on companies registered with MCA under the Companies Act. LLP support is on the roadmap.

**Are financial statements included?**
No — revenue, EBITDA, and profit are behind upstream paywalls. Only master data, directors, capital, and charges are returned.

***

Built by [Thirdwatch](https://thirdwatch.dev). Questions? Open an issue or reach out on the Apify Store listing.

Last verified: 2026-05

# Actor input Schema

## `queries` (type: `array`):

List of 21-character CINs (e.g. 'L17110MH1973PLC019786'). Company-name lookups are best-effort and currently unreliable — passing the CIN directly is strongly recommended. Look up a company's CIN at mca.gov.in or zaubacorp.com.

## `maxResults` (type: `integer`):

Maximum number of companies to return. Start small; raise once you've verified the output.

## `includeDirectors` (type: `boolean`):

Include the list of directors (name, DIN, designation) for each company.

## `proxy` (type: `object`):

Proxy configuration. Pre-configured defaults work for most users — only change if you have specific networking needs.

## Actor input object example

```json
{
  "queries": [
    "L17110MH1973PLC019786"
  ],
  "maxResults": 5,
  "includeDirectors": true
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "queries": [
        "L17110MH1973PLC019786"
    ],
    "maxResults": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("thirdwatch/mca-india-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "queries": ["L17110MH1973PLC019786"],
    "maxResults": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("thirdwatch/mca-india-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "queries": [
    "L17110MH1973PLC019786"
  ],
  "maxResults": 5
}' |
apify call thirdwatch/mca-india-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=thirdwatch/mca-india-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "MCA India - Company Master Data & Director Lookup (CIN)",
        "description": "Look up Indian companies by CIN on the Ministry of Corporate Affairs registry. Returns company master data, directors (with DIN), registered address, authorized/paid-up capital, incorporation date, RoC, status, and charges. KYB / due diligence / credit risk. No subscription required.",
        "version": "0.1",
        "x-build-id": "7ucCb1Le9ExMIqAHD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/thirdwatch~mca-india-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-thirdwatch-mca-india-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/thirdwatch~mca-india-scraper/runs": {
            "post": {
                "operationId": "runs-sync-thirdwatch-mca-india-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/thirdwatch~mca-india-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-thirdwatch-mca-india-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "queries"
                ],
                "properties": {
                    "queries": {
                        "title": "CINs (preferred) or Company Names",
                        "type": "array",
                        "description": "List of 21-character CINs (e.g. 'L17110MH1973PLC019786'). Company-name lookups are best-effort and currently unreliable — passing the CIN directly is strongly recommended. Look up a company's CIN at mca.gov.in or zaubacorp.com.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of companies to return. Start small; raise once you've verified the output.",
                        "default": 5
                    },
                    "includeDirectors": {
                        "title": "Include Directors",
                        "type": "boolean",
                        "description": "Include the list of directors (name, DIN, designation) for each company.",
                        "default": true
                    },
                    "proxy": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy configuration. Pre-configured defaults work for most users — only change if you have specific networking needs."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
