DocCoreX

API Integration

Connect your applications directly to the DocCoreX rendering engine.

🔑 Authentication

All API requests must include a Bearer Token in the header:

Authorization: Bearer YOUR_API_KEY

📨 Document Generation

To generate a document, send a POST request to the rendering endpoint with the template ID and JSON data.

{
  "templateId": "inv-2025-001",
  "data": {
    "customer": "Company S.A.S",
    "total": 1500.50
  }
}