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
  • Understanding How This Works
  • Verify Business Document By OCR
  1. Appruve Agency

Verify Business Document By OCR

Check the validity of a Business Registration Document by performing an OCR

Please note that only Nigeria is supported as a country as of now.

Understanding How This Works

This service allows the upload of a Business Registration Document, Appruve performs an OCR on the document to extract the relevant registration details, then makes a check against the relevant Government database to ensure a record of the business exists.

Verify Business Document By OCR

POST https://api.appruve.co/v1/verifications/{country}/uploads/biz_docs/{doc_type}

Check the validity of a Business Registration Document by performing an OCR. This is a multipart/form-data request.

Path Parameters

Name
Type
Description

country

string

The 2 digit country code. Only Nigeria is supported now so set ng as the value.

doc_type

string

Only Nigeria CAC document is supported now so set cac as the value.

Headers

Name
Type
Description

Authorization*

String

Bearer <token>

Request Body

Name
Type
Description

doc_image

string

The photo of the business registration document. This can be a URL that resolves to the Image or a multipart file.. Only JPEG or PNG images are supported now.

{
    "is_doc_valid": true,
    "data": {
        "doc_submitted": "URL of the document submitted",
        "business_information": {
            "company_id": "123456",
            "company_name": "JOHN DOE TECHNOLOGY LIMITED",
            "company_status": "ACTIVE",
            "company_registration": "123456",
            "company_commencement_date": "1901-07-03",
            "company_type_info": "Company",
            "company_address": "No. 8 John Doe way, Nigeria",
            "company_email": "info@johndoe.com"
        }
    }
}

PreviousConfirm Extracted ID NumberNextVerify Nigeria vNIN with selfie

Last updated 2 years ago