Verify identities.
Extract documents.
In seconds.
Two products, one mission — automate document processing for Indonesian businesses with AI that's fast, accurate, and secure.
Awan KYC
Identity Verification & Biometric Face Matching
Upload an ID document and take a selfie via browser camera — get instant identity verification with biometric face matching, liveness detection, document extraction, and multi-layer fraud detection. Built for Indonesian KTP, SIM, and Passport.
Document Extraction
Extracts all fields from KTP, SIM, and Passport — name, NIK, address, dates, and more. Powered by local OCR with 95%+ accuracy. Zero data leaves your server.
Face Matching
Biometric comparison between ID photo and selfie using InsightFace ONNX. Returns match score with clear status: match, review, or no match.
Fraud Detection
3-layer authenticity pipeline — FFT moire detection, Error Level Analysis, and image quality scoring. Blocks fake documents before extraction.
Privacy-First & UU PDP Compliant
All ML models run locally — zero PII leaves your server. Camera liveness detection via browser webcam. No third-party API calls. UU PDP compliant architecture.
Multi-Layer Fraud Detection Pipeline
FFT Moire Detection
Detects screen-captured documents by analyzing frequency patterns invisible to the naked eye.
Error Level Analysis
Detects compression artifact inconsistencies from Photoshop edits and splicing.
Selfie Liveness
Browser webcam liveness detection blocks printed photos and screen replays with anti-spoofing AI.
Awan DocAI
Intelligent Invoice Processing
Upload invoices in any format — get structured data with line items, totals, and vendor details. Batch processing with JSON and CSV export. Built for Indonesian business documents.
Multi-Format Support
Process PDF, PNG, JPG, and WebP invoices. Handles scanned documents, photos, and digital PDFs with equal accuracy.
Batch Processing
Upload multiple invoices at once. Progress tracking, summary table, and batch export. Process 10+ invoices in one go.
Structured Export
Export to JSON or CSV with one click. Line-item level detail — vendor, amounts, dates, and tax breakdowns ready for your ERP.
Gemini-Powered
Leverages intelligent extraction to understand context, handle messy layouts, and capture data that rule-based OCR often misses.
Developer-Friendly API
RESTful endpoints, simple file uploads, structured JSON responses. Integrate in minutes.
/extract
Extract fields from ID documents (KTP, SIM, Passport) with authenticity check.
# Extract document fields
curl -X POST https://api.awanta.biz.id/extract \
-H "X-API-Key: your-api-key" \
-F "document=@ktp.jpg"
# Response
{
"document": {
"document_type": "ktp",
"nik": "3201234567890001",
"nama": "JOHN DOE",
"tempat_lahir": "JAKARTA"
},
"authenticity": {
"is_authentic": true,
"score": 91
},
"confidence": 0.95
}
/verify
Full identity verification — document extraction + face matching + fraud detection.
# Verify identity
curl -X POST https://api.awanta.biz.id/verify \
-H "X-API-Key: your-api-key" \
-F "document=@ktp.jpg" \
-F "selfie=@photo.jpg" \
-F "selfie_source=upload"
# Response
{
"document": { /* ... */ },
"face_match": {
"score": 87.5,
"status": "match"
},
"authenticity": {
"is_authentic": true,
"score": 91
},
"liveness": {
"is_live": true,
"detail": "Real face detected"
}
}
Ready to automate your
document workflow?
Get in touch to discuss integration, pricing, or a custom demo for your use case.