Skip to content

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

https://deeptagger.com/api/v1

Authentication

All API requests require authentication via API key in the x-api-key header.

Authentication Guide →

Available Endpoints

Extract Data

POST /extract_data

Extract structured data from a document or text.

Detailed Documentation →

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

{
  "status": "error",
  "error": {
    "code": "INVALID_PROJECT",
    "message": "Project not found"
  }
}

Error Handling Guide →

Rate Limits

Rate limits vary by plan. See Rate Limits for details.

SDKs and Libraries

Official

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)