Skip to main content
POST
/
api
/
v1
/
sub-accounts
/
{sub_auth_id}
/
kyc
/
cin
/
search
CIN search
curl --request POST \
  --url https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/search \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>' \
  --data '
{
  "company_name": "ACME PRIVATE LIMITED"
}
'
import requests

url = "https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/search"

payload = { "company_name": "ACME PRIVATE LIMITED" }
headers = {
"X-Auth-ID": "<api-key>",
"X-Auth-Token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {
'X-Auth-ID': '<api-key>',
'X-Auth-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({company_name: 'ACME PRIVATE LIMITED'})
};

fetch('https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "matches": [
    {
      "cin": "U72900KA2024PTC123456",
      "company_name": "ACME PRIVATE LIMITED",
      "status": "Active"
    }
  ]
}
Performs a name-based CIN (Corporate Identity Number) lookup. Returns a list of candidate company matches; select one and pass it to CIN Confirm.
Authenticate with your parent main account’s X-Auth-ID and X-Auth-Token — the same credentials used everywhere else in the API.

Request body

FieldTypeRequiredDescription
company_namestringYesThe company name to look up.

Response example

200 OK
{
  "matches": [
    {
      "cin": "U72900KA2024PTC123456",
      "company_name": "ACME PRIVATE LIMITED",
      "status": "Active"
    }
  ]
}
Search is name-based and may return multiple candidates (or none). Pick the exact match and pass both its cin (as selected_cin) and the company_name to CIN Confirm — confirm is what actually persists the verification.

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

sub_auth_id
string
required

The sub-account's Auth ID.

Example:

"SA_XXXXXX"

Body

application/json
company_name
string
required
Example:

"ACME PRIVATE LIMITED"

Response

200 - application/json

Candidate matches