Ethiopia Fayda ID OCR Python SDK

Instantly extract data from Ethiopian IDs using our native Python library.

AI extracting data from a Ethiopia ID card
StructOCR engine analyzing a Ethiopian document in real-time.

Parsing Fayda ID Challenges

Parsing Ethiopia's Fayda ID presents unique challenges. Firstly, the presence of both Amharic script and Latin characters within the same document requires a sophisticated OCR engine capable of accurately interpreting both. Secondly, variations in print quality and layout across different ID cards can significantly impact the accuracy of data extraction.

Why StructOCR for Ethiopia

Our model is specifically trained on a vast dataset of Ethiopian Fayda IDs, addressing the intricacies of both Amharic and Latin script recognition. This advanced national id ocr solution is optimized for the 14 digits structure commonly found in these documents. The StructOCR Python SDK offers a streamlined integration process, abstracting away the complexities of OCR and delivering accurate, structured data in a user-friendly format.

Common Use Cases in Ethiopia

  • Digital Onboarding: Verify users for Fintech apps in Ethiopia.
  • Telecom Registration: Automate SIM card registration with Fayda ID.
  • Hotel Check-in: Speed up guest registration workflows.

Live Demo: ID card scanner

No registration required. Upload a file to test the extraction.

1
Upload
2
Results

Drop files here or click to browse

JPG · PNG · WebP  ·  up to 500 files · max 4.5 MB each

No files selected
Need more testing? Create a free account to get 200 free credits (equals 100 National ID scans).

Python SDK Integration

Install the SDK via pip: `pip install structocr`. Then use the following code.

Prerequisite: Python 3.6+ and `structocr` library installed.

from structocr import StructOCR

# 🔑 Need a key for Ethiopia? Get 200 free credits instantly:
# 👉 https://structocr.com/register
# Initialize with your API Key
client = StructOCR("YOUR_API_KEY_HERE")

def scan_ethiopia_id():
    # Note: Supports JPG, PNG, WebP (Max 4.5MB)
    # Target: Fayda ID
    image_path = "ethiopia_national_id.jpg"

    try:
        print(f"Scanning {image_path}...")
        
        # The SDK handles file upload and API communication
        # It automatically detects that this is a Ethiopian document
        result = client.scan_national_id(image_path)

        # Check success flag (SDK returns a dict matching the JSON response)
        if result.get('success'):
            data = result['data']
            print("✅ Ethiopia Extraction Successful!")
            
            # Basic Identity
            print(f"Region:      {data.get('country_code')} (Series: {data.get('card_series')})")
            print(f"Name:        {data.get('given_names')} {data.get('surname')}")
            print(f"ID Number:   {data.get('document_number')}")
            
            # Critical Field: Personal Identity Number (CNP/CPF/NIN)
            print(f"Personal #:  {data.get('personal_number')}")
            
            # Demographics
            print(f"DOB:         {data.get('date_of_birth')} ({data.get('sex')})")
            print(f"Address:     {data.get('address')}")
        else:
            print(f"❌ Extraction Failed: {result.get('error')}")

    except Exception as e:
        # Handle SDK or Network errors
        print(f"An error occurred: {e}")

if __name__ == "__main__":
    scan_ethiopia_id()

Technical Specs

  • Latency: < 4s (Average)
  • Uptime: 99.9% SLA
  • Security: AES-256 Encryption & SOC2 Compliant
  • Input: JPG, PNG, WebP (Max 4.5MB)
  • Output: JSON (Structured Data)

Key Features

  • Native Script Support: Reads English and local characters.
  • Blur Detection: Automatically rejects blurry images.
  • Fraud Check: Validates Fayda ID number format.
  • Smart Crop: Removes background noise automatically.

JSON Response Example

The SDK returns a Python dictionary matching this JSON structure.

{
  "success": true,
  "data": {
    "type": "national_id",
    "country_code": "ETH",
    "nationality": "ETHIOPIAN",
    "document_number": "1234 5678 9012",
    "card_series": "",
    "personal_number": "1234 5678 9012",
    "surname": "ABEBE",
    "given_names": "DAWIT",
    "sex": "M",
    "date_of_birth": "1990-05-15",
    "place_of_birth": "ADDIS ABABA",
    "address": "Bole Sub-city, Woreda 03, Addis Ababa",
    "date_of_issue": "2020-01-01",
    "date_of_expiry": "2030-01-01",
    "issuing_authority": "NIDP"
  }
}

Frequently Asked Questions

Does the Python SDK handle image uploads?

Yes, the SDK automatically handles base64 encoding and file uploads.

Is data stored?

No. Images are processed in-memory and deleted immediately.

How to handle errors?

The SDK result dictionary contains a 'success' boolean and an 'error' message if failed.

You May Also Like

Related tutorials, platform guides, and comparisons

Country Tutorial

Ethiopia Passport OCR with Python SDK

Use the official StructOCR Python SDK and FastAPI to extract structured MRZ and VIZ data from Ethiopia passports with a server-side integration.

Python · Passport
Country Tutorial

Kenya Passport OCR with Python SDK

Use the official StructOCR Python SDK and FastAPI to extract structured MRZ and VIZ data from Kenya passports with a server-side integration.

Python · Passport
Country Tutorial

Philippines UMID OCR Python SDK

Python Tutorial: Automate KYC in Philippines. Extract data from UMID using StructOCR Python SDK. Supports native text.

Python · umid
Country Tutorial

Uzbekistan Passport OCR with Python SDK

Use the official StructOCR Python SDK and FastAPI to extract structured MRZ and VIZ data from Uzbekistan passports with a server-side integration.

Python · Passport
Country Tutorial

Norway Passport OCR with Python SDK

Use the official StructOCR Python SDK and FastAPI to extract structured MRZ and VIZ data from Norway passports with a server-side integration.

Python · Passport
Country Tutorial

UK Driver License OCR with Python SDK

Extract structured fields from a United Kingdom photocard driving licence with the StructOCR Python SDK and FastAPI.

Python · Driver License
Country Tutorial

India Aadhaar & PAN Card OCR Python SDK

Python Tutorial: Automate KYC in India. Extract data from Indian Aadhaar and PAN Cards using StructOCR Python SDK. Supports Hindi/English parsing and secure format validation.

Python · aadhaar & pan
Country Tutorial

Indonesia KTP (e-KTP) OCR Python SDK

Python Tutorial: Automate KYC in Indonesia. Extract data from KTP (e-KTP) using StructOCR Python SDK. Supports native text.

Python · ktp (e-ktp)
Country Tutorial

Hungary Személyazonosító OCR Python SDK

Python Tutorial: Automate KYC in Hungary. Extract data from Személyazonosító and validate TD1 MRZ using StructOCR Python SDK. Supports native Hungarian text and accents.

Python · személyazonosító
Country Tutorial

Greece Deltio Taftotitas OCR Python SDK

Python Tutorial: Automate KYC in Greece. Extract dual-script data from Deltio Taftotitas and validate TD1 MRZ using StructOCR Python SDK.

Python · deltio taftotitas

Technical Comparisons & Integrations

Explore platform integrations and competitive analysis

From tutorial to production in 5 minutes.

You've seen the code. Now get your API key, grab your 200 free credits, and see it work with your own images. No credit card required.

Instant Access Cancel Anytime 99.9% Uptime