> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smartcomply.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CAC Advanced

> Retrieve a comprehensive CAC business profile including directors and shareholding structure.

The CAC Advanced endpoint returns a full business profile from the Corporate Affairs Commission, including the complete list of directors, their personal details, shareholding information, and affiliated PSC data.

## Endpoint

```
POST /api/onboarding/nigeria_kyc/cac_advanced/
```

## Request

### Headers

| Header           | Value               | Required |
| ---------------- | ------------------- | -------- |
| `x-access-token` | Your API secret key | Yes      |
| `Content-Type`   | `application/json`  | Yes      |

### Body Parameters

| Parameter             | Type   | Required | Description                                                                                        |
| --------------------- | ------ | -------- | -------------------------------------------------------------------------------------------------- |
| `registration_number` | string | Yes      | The CAC registration number                                                                        |
| `company_name`        | string | Yes      | Registered company name                                                                            |
| `company_type`        | string | Yes      | Entity type: `"RC"` (registered company), `"BN"` (business name), or `"IT"` (incorporated trustee) |

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/cac_advanced/" \
    -H "x-access-token: YOUR_SECRET_KEY" \
    -H "Content-Type: application/json" \
    -d '{"registration_number": "10056", "company_name": "JOYCE VENTURES", "company_type": "IT"}'
  ```

  ```python Python theme={null}
  import requests
  response = requests.post(
      "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/cac_advanced/",
      headers={"x-access-token": "YOUR_SECRET_KEY", "Content-Type": "application/json"},
      json={"registration_number": "10056", "company_name": "JOYCE VENTURES", "company_type": "IT"},
  )
  ```
</CodeGroup>

## Response

### 200 OK

| Field                                | Type    | Description                                                   |
| ------------------------------------ | ------- | ------------------------------------------------------------- |
| `data.rc_number`                     | string  | Registration number                                           |
| `data.company_name`                  | string  | Company name                                                  |
| `data.company_id`                    | integer | Internal company ID                                           |
| `data.entity_type`                   | string  | Entity type (e.g., `"IT"`, `"RC"`, `"BN"`)                    |
| `data.company_status`                | string  | e.g., `"ACTIVE"`                                              |
| `data.registrationDate`              | string  | Date of registration                                          |
| `data.directors`                     | array   | List of directors with full personal and shareholding details |
| `data.directors[].firstname`         | string  | Director's first name                                         |
| `data.directors[].surname`           | string  | Director's surname                                            |
| `data.directors[].gender`            | string  | Director's gender                                             |
| `data.directors[].status`            | string  | Director status (e.g., `"ACTIVE"`)                            |
| `data.directors[].isChairman`        | boolean | `true` if the director is the chairman                        |
| `data.directors[].dateOfAppointment` | string  | Date of appointment                                           |

```json theme={null}
{
  "status": "success",
  "data": {
    "rc_number": "10056",
    "company_name": "JOYCE VENTURES",
    "company_id": 906200,
    "entity_type": "IT",
    "company_status": "ACTIVE",
    "registrationDate": "2007-03-30",
    "directors": [
      {
        "id": 11234246,
        "firstname": "SAMSON",
        "surname": "ADELOLU",
        "otherName": "DANIEL",
        "gender": "MALE",
        "status": "ACTIVE",
        "occupation": "CLERGY",
        "isChairman": true,
        "dateOfAppointment": "2007-03-13T00:00:00.000+00:00",
        "city": "IBADAN",
        "state": "OYO",
        "address": "NO. 4, AGBA ROAD, SANYO"
      }
    ]
  },
  "message": "Business Registration details retrieved successfully"
}
```

### 400 Bad Request

```json theme={null}
{
  "status": "failed",
  "data": [],
  "message": "Sorry, your check cannot be processed at the moment. Please try again in a few minutes"
}
```

### 401 Unauthorized

```json theme={null}
{
  "status": "failed",
  "message": "Authentication credentials were not provided."
}
```


## OpenAPI

````yaml POST /api/onboarding/nigeria_kyc/cac_advanced/
openapi: 3.0.3
info:
  title: Adhere API
  description: >-
    Identity verification, credit checks, transaction monitoring, and loan fraud
    detection across Africa.
  version: 3.0.0
servers:
  - url: https://adhere-api.smartcomply.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Nigeria KYC
  - name: Kenya KYC
  - name: Ghana KYC
  - name: Rwanda KYC
  - name: Uganda KYC
  - name: Biometrics
  - name: Individual Credit
  - name: Business Credit
  - name: Transaction Monitoring
  - name: Transaction Screening
  - name: Transaction KYC
  - name: Loan Fraud
  - name: User Journey
paths:
  /api/onboarding/nigeria_kyc/cac_advanced/:
    post:
      tags:
        - Nigeria KYC
      summary: CAC Advanced
      operationId: cacAdvanced
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - registration_number
              properties:
                registration_number:
                  type: string
                  example: RC-123456
      responses:
        '200':
          description: CAC advanced data retrieved
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              data:
                type: array
                items: {}
              message:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              message:
                type: string
                example: Authentication credentials were not provided.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-access-token
      description: Your Adhere API secret key

````