# Toll402 Indian CIN Validator

> Toll402 Indian CIN Validator is a paid API for AI agents from toll402.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Offline structural validator for an Indian Corporate Identity Number (CIN), checking format, listing status, NIC code, state code, incorporation year, company type, and registration number.

## Facts

- Endpoint: POST https://toll402.dev/v1/t/cin_in_validate
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toll402-indian-cin-validator-630e8a91
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_av-4V_WE5gNh8_Y_QlOaJ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability toll402-indian-cin-validator-630e8a91 -d '<json body>'
```

Example prompt: Can you check whether this Indian company CIN is structurally valid: L17110GJ1973PLC011243? I want to know if the listing status, state code, NIC code, company type, and registration number all look correct.

## When to prefer this

Use this endpoint when you need fast, offline, zero-external-dependency structural validation of Indian CINs — no network call to MCA, no checksum (none exists), purely format and enum correctness. Ideal for pre-submission validation in onboarding flows, KYC pipelines, or data quality checks where you want to catch malformed CINs cheaply before hitting authoritative registries.

## Known failure modes

- CIN not exactly 21 characters — returns invalid format error
- Invalid listing status letter (not L or U) — flags first character
- Unrecognized state code not in MCA list — flags state code field
- Implausible incorporation year (e.g. before 1800 or future date) — flags year field
- Unknown company type code not in known enum — flags company type field
- Non-numeric characters in NIC code, year, or registration number — flags respective field
- Empty or missing input value — returns missing input error

## How this service works

Offline structural validator for an Indian CIN (Corporate Identity Number, 21 characters). Parses and checks: listing status letter (L/U), 5-digit NIC industry code, 2-letter state code (against the known MCA state-code list), 4-digit incorporation year (plausible range), 3-letter company-type/ownership code (against a known enum like PLC, PTC, OPC, GOI, NPL, FTC, SGC, ULL, ULT), and 6-digit registration number. No checksum exists so this is a format-only check.

## Output

Returns a structured validation result indicating whether the CIN string is structurally valid, along with parsed components: listing status (L/U), 5-digit NIC industry code, 2-letter state code, 4-digit incorporation year, 3-letter company type/ownership code (e.g. PLC, PTC, OPC), and 6-digit registration number. Flags which component failed if invalid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "value"
     ],
     "properties": {
      "value": {
       "type": "string",
       "description": "CIN string to validate, e.g. U72200MH2008PTC178618"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toll402-indian-cin-validator-630e8a91/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toll402.dev](https://www.zero.xyz/host/toll402.dev/llms.txt)
