Infyner API

Programmatic access to Indian company and director data, built on the same MCA-aligned records that power the website. JSON over HTTPS, API-key auth. The endpoints below are stable; we'll mark new ones as Beta until they're ready to depend on.

Quick start. Email api@infyner.com with your team and use case to get an API key. All requests go to https://api.infyner.com and pass the key as a header: X-Api-Key: .... Rate limits, pricing and SLA details are on the Pricing page or available on request.

Companies

GET /v1/companies/{cin} Beta Auth: API key

Master data for one company by CIN.

Returns the company's master record - name, status, registered office, capital, ROC, date of incorporation, principal activity. Mirrors what's shown on the company overview page.

ParameterTypeRequiredNotes
cin string yes 21-character CIN. Case-insensitive; we normalise to upper-case.
{
  "cin": "U72200KA2014PTC076171",
  "name": "Example Software Private Limited",
  "status": "Active",
  "date_of_incorporation": "2014-03-12",
  "roc": "Bangalore",
  "authorised_capital": 1000000,
  "paid_up_capital": 750000,
  "registered_office": {
    "line1": "...",
    "city": "Bangalore",
    "state": "KA",
    "pin": "560001"
  },
  "last_refreshed": "2026-05-05"
}
GET /v1/companies/{cin}/directors Beta Auth: API key

Directors and KMP for a company.

Returns the current and past directors of the company, with DIN, designation and appointment dates, sourced from MCA filings.

ParameterTypeRequiredNotes
cin string yes 21-character CIN.
include string no current | past | all. Defaults to current.
GET /v1/companies/{cin}/charges Beta Auth: API key

Charge register for a company.

Returns every charge filed against the company - open, modified and closed - with amounts, lender names and key dates from MCA's CHG-1 / CHG-4 filings.

ParameterTypeRequiredNotes
cin string yes 21-character CIN.
status string no open | closed | all. Defaults to all.

Directors

GET /v1/directors/{din} Beta Auth: API key

Director profile by DIN.

Returns the director's master data along with every linked company - past and present - with the role and appointment dates.

ParameterTypeRequiredNotes
din string yes 8-digit Director Identification Number.