Quick Start
Get up and running with DocGenLab in 5 minutes! ⚡
1. Create an Account
Visit app.docgenlab.com and create your account.
📧 Email: your@email.com
🔑 Password: ********
2. Create Your First Template
Option A: Upload a DOCX File
- Navigate to Templates → New Template
- Click Upload DOCX
- Upload a Word document with tokens like
{{customer_name}} - DocGenLab will automatically extract all tokens
Option B: Use the HTML Builder
- Navigate to Templates → New Template
- Click Builder
- Design your template with the visual editor
- Insert tokens using the Insert Token button
3. Generate Your First Document
- Open your template
- Go to the Generate tab
- Fill in the token values
- Click Generate Document
- Download your PDF or DOCX!
4. (Optional) Get an API Key
For programmatic access:
- Navigate to Settings → Developer
- Click Create API Key
- Copy your key (starts with
dgl_) - Use it in API requests:
curl -X POST "https://api.docgenlab.com/api/v1/documents/" \
-H "X-API-Key: dgl_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"template_id": "your-template-id",
"input_json": {
"customer_name": "John Doe"
},
"output_format": "pdf"
}'
Next Steps
Need Help?
Check out our complete documentation or visit the API reference.