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 Agency
  2. Standalone OCR

Cameroon ๐Ÿ‡จ๐Ÿ‡ฒ

Extract PII data and perform analyses on Cameroon ID documents

PreviousCรดte d'Ivoire ๐Ÿ‡จ๐Ÿ‡ฎNextSenegal ๐Ÿ‡ธ๐Ÿ‡ณ

Last updated 2 years ago

How It Works

The endpoint is constructed as follows.

https://api.appruve.co/v1/ocr_jobs/cm/{id_type}

id_type should be replaced with the specific ID type. Only national_id is supported at this time.

The request is a multipart POST request as shown in the example below. The front_id_image and back_id_image parameters are required and their values could be a or a web URL.

Example National ID Request

curl --location --request POST 'https://api.appruve.co/v1/ocr_jobs/cm/national_id' \
--header 'Authorization: Bearer TOKEN' \
--form 'front_id_image=@"/path/cm_national_id_front.jpg"' \
--form 'back_id_image=@"/path/cm_national_id_back.jpg"'

An example response is given below.

{
    "id_details": {
        "id_type": "national_id",
        "front_id": {
            "first_name": "John",
            "last_name": "Doe",
            "date_of_birth": "1993-05-11",
            "gender": "M",
            "place_of_birth": "Douala",
            "height": "1,61",
            "profession": "Etudiant"
        },
        "back_id": {
            "fathers_name": "Senior Doe",
            "mothers_name": "Mama Doe",
            "address": "",
            "expiry_date": "2029-02-05",
            "issue_date": "2019-02-05",
            "document_number": "123456789"
        },
        "is_id_valid": true
    },
    "document_country": "cm",
    "front_id_submitted": "URL",
    "back_id_submitted": "URL",
    "front_id_face_photo": "URL",
    "transaction_reference": "c8f6952c-77ea-443d-b46f-86415fd1f78d",
    "document_analyses": [
        {
            "type": "TEMPLATE_MATCHING",
            "is_check_successful": true,
            "data": null
        }
    ],
    "id_confidence_score": 100,
    "face_sharpness": 38.9,
    "face_brightness": 58.99,
    "is_reenrollment": false
}
File Object