---
title: "Find CIN from Company Name"
method: POST
path: "/verify/company_name_to_cin"
tags: ["Company Verification"]
---

# Find CIN from Company Name

`POST /verify/company_name_to_cin`

Lookup Corporate Identification Number (CIN) by company name. Requires authenticated request. The API delegates to the configured provider and returns a normalized result object containing the CIN and other basic company info when available.

## Request body

- CompanyNameToCINRequest
  - `company_name` string, required — Full or partial company name to search for (required)

## Response `200`

CIN lookup result

- CompanyNameToCINResponse
  - `status` string — Result status: success / failed
  - `data` object
    - `message` string
    - `result` CompanyCINRecord
      - `company_name` string
      - `cin` string
      - `registered_address` string, nullable
      - `state` string, nullable
      - `status` string, nullable
  - `chargeble` string — Whether the call is billable ('true'|'false')
  - `user_consent` string — Whether user consent is present ('true'|'false')

## Other responses

- `400` — Invalid request (missing or invalid company_name)
- `401` — Unauthorized - Invalid or missing API key / client credentials
- `404` — CIN not found for the provided company name
- `500` — Internal server error - provider or server error

---

[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)
