API Reference¶
The DeepTagger REST API allows you to integrate document intelligence directly into your applications.
Recommended: Use n8n Integration
For most users, we recommend the n8n integration for easier workflow automation. Use the direct API for custom applications.
Base URL¶
Authentication¶
All API requests require authentication via API key in the x-api-key
header.
Available Endpoints¶
Extract Data¶
POST /extract_data
Extract structured data from a document or text.
Quick Example:
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"
Response Format¶
Success Response¶
{
"status": "success",
"data": {
"invoice_number": "INV-2025-001",
"total": "$1,234.56",
"date": "2025-01-15"
}
}
Error Response¶
Rate Limits¶
Rate limits vary by plan. See Rate Limits for details.
SDKs and Libraries¶
Official¶
- n8n Node: n8n-nodes-deeptagger
Community¶
Want to build an SDK? Contact us: support@deeptagger.com
Support¶
- API Issues: support@deeptagger.com
- Documentation: This site
- Status: status.deeptagger.com (coming soon)