Basic CAC
This endpoint allows you to verify an RC number of a business
The basic CAC endpoint, allows you businesses to easily verify the RC number of any business registered with the CAC. This feature is incredibly useful for a variety of scenarios. For example, if you are considering doing business with a company, you can use the endpoint to ensure that they are a legitimate entity registered with the CAC.
To verify an RC number, all you have to do is enter the number into the designated field on our dashboard, and our system will quickly search the CAC database to confirm the business's registration status. Our system is fast and accurate, ensuring that you receive up-to-date information on the status of the business in question.****
TEST DATA
rc_number: 092932
company_name: Test Company
company_type: RC
POST
{{URL}}/identitypass/verification/cac
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
rc_number | The Registration number of the company |
company_type | BN or RC or IT. Default is RC |
company_name | Name of company (optional) |
Sample Response
{
"status": true,
"detail": "Verification Successfull",
"response_code": "00",
"data": {
"rc_number": "092932",
"company_name": "TEST COMPANY",
"state": "DELTA State",
"company_address": "10 lekki phase 12, Ousn state",
"company_status": "Active",
"city": "Akure",
"branchAddress": "lekki phase 10, Osun state",
"lga": "Birnin Kudu",
"registrationDate": "1986-06-04T00:00:00Z",
"directors": {},
"searchScore": "0",
"email_address": "[email protected]",
"company_type": "RC"
},
"verification": {
"status": "VERIFIED",
"reference": "f332afdc-a35f-4a66-8d85-53ebece32430"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
data | An array containing the information received. |
rc_number | The registration number of the company. |
company_name | The name of the company. |
state | The state where the company is located. |
company_address | The address of the company. |
company_status | The status of the company. |
city | The city where the company is located. |
branchAddress | The address of the branch (if applicable). |
lga | The Local Government Area where the company is located. |
registrationDate | The date when the company was registered. |
directors | The list of directors associated with the company. |
searchScore | The relevance score of the search result. |
email_address | The email address associated with the company. |
company_type | The type or classification of the company. |
verification | It holds additional details about the verification process. |
status | Indicates the status of the verification. |
reference | A string representing a unique reference or identifier associated with the verification process. |
Updated 8 months ago