Main API Docs
  • Welcome!
  • General
    • Introduction
    • Authentication
    • Personal Access Tokens
    • Test IDs
    • Check Wallet Balance
  • Appruve Identity
    • Introduction
    • Ghana 🇬🇭
      • Verify Ghana TIN
      • Verify Ghana Driver License
      • Verify Ghana SSNIT ID
      • Verify Ghana Passport
      • Verify Ghana Voter ID
      • Verify Ghana Digital Address
    • Nigeria 🇳🇬
      • Verify Nigeria TIN
      • Verify Nigeria Driver License
      • Verify Nigeria NIN
      • Verify Nigeria vNIN
      • Verify Nigeria Voter ID
      • Verify Nigeria BVN
    • Kenya 🇰🇪
      • Verify Kenya KRA PIN
      • Verify Kenya National ID
    • Uganda 🇺🇬
      • Verify Uganda Voter ID
      • Verify Uganda Telco Subscriber
      • BulK Uganda Telco Subscriber Verification
  • Appruve Business
    • Introduction
    • Business Lookups
      • Nigeria 🇳🇬
        • Lookup with CAC number
        • Lookup using Tax ID (TIN)
      • Uganda Business Lookup 🇺🇬
      • Ghana Business Lookup 🇬🇭
    • Business Beneficial Ownership
      • Nigeria 🇳🇬
  • Appruve Agency
    • OCR For Sequential Verification
      • Senegal 🇸🇳
      • Nigeria 🇳🇬
      • Ghana 🇬🇭
      • Kenya 🇰🇪
      • Côte d'Ivoire 🇨🇮
      • Cameroon 🇨🇲
    • Standalone OCR
      • Nigeria 🇳🇬
      • Ghana 🇬🇭
      • Kenya 🇰🇪
      • Côte d'Ivoire 🇨🇮
      • Cameroon 🇨🇲
      • Senegal 🇸🇳
    • Perform Face Matching
    • Upload Selfie Photo
    • Get Liveness Detection Challenge
    • Verify Liveness Detection Challenge
    • Confirm Extracted ID Number
    • Verify Business Document By OCR
    • Verify Nigeria vNIN with selfie
  • Guides
    • Webhooks
    • ID Document to Selfie Matching
  • Mobile Sdks
    • Android SDK
    • iOS SDK
  • Resources
    • Country Codes
    • ID Types
    • Face Liveness Check
Powered by GitBook
On this page
  1. Appruve Business
  2. Business Lookups
  3. Nigeria 🇳🇬

Lookup with CAC number

Look up an entity's registration information

In Nigeria, one can search an entity using the Corporate Affairs Commission (CAC) number. When looking up a Nigerian entity using their CAC number, the number can start with BN, RC, IT, LP or LLP. For example "RC123456".

POST https://api.appruve.co/v1/verifications/ng/business_info

The request object will take in the following parameters:

Object

Type

Required

Description

search_term

string

true

The CAC number. For eg. 'RC123456'

curl --location --request POST 'https://api.appruve.co/v1/verifications/ng/business_info' \
--header 'Authorization: Bearer <API_TOKEN>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "search_term": "1234567"
}'

The response object will look like this:

Object

Description

company_name

This is the entity's official name

company_status

This shows whether the entity has been active depending on if entity reports have been filled for the past year.

company_registration

This is the entity's registration number.

company_commencement_date

This is the date on which the entity was registered.

company_type_info

This is the legal type of entity e.g a limited liability company, a sole proprietorship etc.

company_email

This is the registered email address of the entity.

company_address

This is the registered address of the entity.

{
    "company_id": "1234567",
    "company_name": "JOHN DOE TECHNOLOGIES LTD",
    "company_status": "INACTIVE",
    "company_registration": "2345689",
    "company_commencement_date": "2018-07-10",
    "company_type_info": "Company",
    "company_email": "john.doe@gmail.com",
    "company_address": "8, LASODE CRESCENT, OFF OZUMBA MBADIWE"
}

PreviousNigeria 🇳🇬NextLookup using Tax ID (TIN)

Last updated 3 years ago