CAC Verification Service
A company registration number (CRN) is a unique combination of 8 numbers, or 2 letters followed by 6 numbers. It is used to identify your company or limited partnership and verify its legal existence as an incorporated entity. Companies House will issue a CRN during the company formation process.
Overview
This service validates CAC registration of an organization i.e Registered Company (RC) or Business Name (BN) numbers for organizations registered with Corporate Affairs Commission (Nigeria)
Important!
Before you proceed, ensure you review the prerequisites for integrating to our APIs for a more detailed guide.
API Endpoint
https://api.verified.africa/sfx-verify/v3/id-service/
Headers
Our service accepts headers for authentication. See below the headers to pass to the API
Header | Type | Description |
---|---|---|
userid | String | This is your user id retrieved from the portal. Check the getting started article to understand how to retrieve your userid |
apiKey | String | This is your apiKey retrieved from the portal. Check the getting started article to understand how to retrieve your apiKey |
Request
Request Parameter | Status | Description | Test Data |
---|---|---|---|
rcNumber | Required | The rc Number or BN of the company being validated | RC09098 |
companyName | Required | The name of the company being validated | Seamfix |
verificationType | Required | This field is used to identify the service being called. Ensure to use the value provided exactly as provided | RC-VERIFICATION |
{
"rcNumber": "RC09098",
"companyName": "Seamfix",
"verificationType":"RC-VERIFICATION"
}
Response
Response | Response type | Description |
---|---|---|
message | string | This is a description of the response received. |
transactionRef | string | If you supplied a transactionReference, the same will be returned here. Else, we would generate a reference and return that to you in this field. |
verified | boolean | Either True/false |
dateOfIncorporation | string | Date the transaction was done |
businessAddress | string | The address of the company being validated. |
companyName | string | The name of the company being validated. |
Request
{
"status": "VERIFIED",
"message": "RC Validated",
"transactionRef": "SF|KYC|RC|VAS|2909789873411249",
"companyName": "Seamfix",
"verified": true,
"dateOfIncorporation": "10-09-1990",
"businessAddress": "1st Floor, Leasing House, C & I Leasing Drive,Off Bisola Durosinmi Etti Drive, Off Admiralty Way, Lekki Phase 1,Lagos, Nigeria"
}
Updated 7 months ago