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

C么te d'Ivoire 馃嚚馃嚠

Extract PII data and perform analyses on C么te d'Ivoire ID documents

PreviousKenya 馃嚢馃嚜NextCameroon 馃嚚馃嚥

Last updated 2 years ago

How It Works

The endpoint is constructed as follows.

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

id_type should be replaced with the specific ID type. Supported ID types are passport, national_id, embassy_id, foreign_id, and identity_certificate (Attestation D'Identit茅 )

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/ci/national_id' \
--header 'Authorization: Bearer TOKEN' \
--form 'front_id_image=@"/path/ci_national_id_front.jpg"' \
--form 'back_id_image=@"/path/ci_national_id_back.jpg"'

Example Passport Request

curl --location --request POST 'https://api.appruve.co/v1/ocr_jobs/ci/passport' \
--header 'Authorization: Bearer TOKEN' \
--form 'front_id_image=@"/path/ci_passport.jpg"'

Example Residence Permit Request

curl --location --request POST 'https://api.appruve.co/v1/ocr_jobs/ci/residence_permit' \
--header 'Authorization: Bearer TOKEN' \
--form 'front_id_image=@"/path/residence_permit_front.jpg"' \
--form 'back_id_image=@"/path/residence_permit_back.jpg"'

Example Identity Certificate Request

curl --location --request POST 'https://api.appruve.co/v1/ocr_jobs/ci/identity_certificate' \
--header 'Authorization: Bearer TOKEN' \
--form 'front_id_image=@"/path/identity_certificate.jpg"'

An example response is given below.

{
    "id_details": {
        "front_id": {
            "id_number": "12345678",
            "first_name": "John",
            "middle_name": "",
            "last_name": "Doe",
            "date_of_birth": "1993-05-02",
            "gender": "M",
            "issue_date": "2020-03-11",
            "expiry_date": "2025-05-02",
        },
        "back_id": {
            "fathers_name": "Senior Doe",
            "mothers_name": "Mama Doe",
            "fathers_date_of_birth": "ND",
            "mothers_date_of_birth": "ND",
            "home_address": "",
            "profession": "Architecte",
            "serial_number": ""
        }
    },
    "front_id_submitted": "URL",
    "back_id_submitted": "URL",
    "front_id_face_photo": "URL",
    "document_analyses": [
        {
            "type": "TEMPLATE_MATCHING",
            "is_check_successful": true,
            "data": null
        },
    ],
    "id_confidence_score": 100
}
File Object