# India Ministry of Corporate Affairs — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and access official regulatory documents from India's Ministry of Corporate Affairs, including information on struck-off companies, disqualified directors, public notices, LLP strike-offs, and Registrar of Companies office locations. Verify corporate compliance status and find contact details for ROC offices across India.

**Category:** Government & Public Data | **Website:** [mca.gov.in/](https://mca.gov.in/) | **Docs:** [parse.bot/marketplace/ddef6e92-db30-473c-b306-a9f423ae4e96/mca-gov-in-api](https://parse.bot/marketplace/ddef6e92-db30-473c-b306-a9f423ae4e96/mca-gov-in-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-mca-gov-in-api-ddef6e92/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_roc_offices

List all Registrar of Companies (ROC) offices across India. Returns the complete list of 32 ROC offices with their full names including jurisdiction and city. No parameters required. This is a single-page response returning all offices at once.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mca-gov-in-api-ddef6e92/list_roc_offices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_documents

Search and list MCA regulatory documents and notices by category. Returns paginated results from the document management system. Each result includes the document title, issuing ROC office, date, type, and size. Categories include struck-off companies, disqualified directors, public notices, LLP strike-off notices, extension of AGM, and proclaimed offenders. Results are sorted by date (newest first by default).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `folder` | string | No | Document category folder ID. |
| `keyword` | string | No | Search keyword to filter documents by title (e.g. 'Delhi', 'Reliance'). Empty string returns all documents in the category. |
| `page` | integer | No | Page number for pagination, 1-based. |
| `per_page` | integer | No | Number of results per page. |
| `sort_order` | string | No | Sort order for results by date. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mca-gov-in-api-ddef6e92/search_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"folder":"<string>","keyword":"<string>","page":"<integer>","per_page":"<integer>","sort_order":"<string>"}'
```
