DeepTagger Documentation¶
Welcome to the DeepTagger documentation! DeepTagger is an AI-powered document intelligence platform that automatically extracts structured data from documents.
Quick Navigation¶
n8n Integration¶
Start here for n8n workflow automation! Install the DeepTagger community node and automate document processing in your n8n workflows.
API Reference¶
Direct REST API integration for custom applications and scripts.
Guides¶
Learn about DeepTagger concepts, training models, and best practices.
Deployment¶
Self-hosting documentation and deployment guides.
What is DeepTagger?¶
DeepTagger uses machine learning to extract structured information from documents automatically. Instead of writing complex extraction rules, you simply annotate a few example documents, and DeepTagger learns to extract similar data from new documents.
Perfect for automating data entry from:
- :material-file-invoice: Invoices - Extract totals, dates, vendor info
- Receipts - Parse expense details
- Forms - Structured field extraction
- Contracts - Key terms and metadata
- Any business document - Custom schemas
Primary Use Case: n8n Workflow Automation¶
The DeepTagger n8n community node is the recommended way to use DeepTagger for most users.
n8n Cloud & Self-Hosted Support
The DeepTagger node works on both n8n Cloud (after verification) and self-hosted n8n instances (available now on npm).
Why n8n + DeepTagger?¶
graph LR
A[Email with Invoice] --> B[n8n Email Trigger]
B --> C[DeepTagger Node]
C --> D[Extract: Total, Date, Vendor]
D --> E[Google Sheets]
D --> F[Accounting Software]
D --> G[Slack Notification]
Common Workflows:
- Invoice Processing - Email → Extract → Accounting System
- Receipt Management - Cloud Storage → Extract → Expense Tracker
- Form Processing - Webhook → Extract → CRM/Database
- Contract Analysis - Document Upload → Extract → Review Notification
- Batch OCR - Scheduled → Process Folder → Archive
Get Started with n8n Integration →
Alternative: Direct API Integration¶
For custom applications, use the DeepTagger REST API:
curl -X POST https://deeptagger.com/api/v1/extract_data \
-H "x-api-key: YOUR_API_KEY" \
-F "fo_id=fo_1759714105892" \
-F "file=@invoice.pdf"
Getting Help¶
- n8n Node Issues: GitHub Issues
- API Support: support@deeptagger.com
- Documentation: You're reading it! Use search above.
Quick Links¶
Resource | Description |
---|---|
n8n Installation | Install DeepTagger node in n8n |
n8n Examples | Real-world workflow examples |
API Authentication | Get API keys and configure access |
What is DeepTagger? | Core concepts and how it works |
Creating Projects | Set up your first extraction project |