Available AIEE extraction capabilities and their specifications
| Method | Version | Formats | Confidence | Processing Time | Use Cases |
|---|---|---|---|---|---|
| Json | 1.0 | PDF, DOCX, TXT | 0.7-0.9 | 1.5s | template_matching, structured_output |
| Simple_ai | 1.0 | PDF, DOCX, TXT, Images | 0.8-0.95 | 3.0s | ai_extraction, prompt_based, structured_output |
| Tiered_ai | 1.0 | PDF, Images, Scanned documents | 0.85-0.98 | 8.0s | ai_extraction, document_intelligence, multi_stage, structured_output |
| Workflow | 1.0 | PDF, DOCX, TXT, Images, Scanned documents | 0.85-0.98 | 5.0s | workflow_orchestration, service_composition, configurable_pipelines, soa_architecture |
POST /v1/extract
{
"method": "simple_ai",
"document_url": "https://example.com/document.pdf",
"document_text": "Optional direct text input"
}
{
"success": true,
"data": {
"extracted_fields": {...},
"confidence": 0.95,
"processing_time": 2.5
}
}