Skip to main content

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

  1. Navigate to TemplatesNew Template
  2. Click Upload DOCX
  3. Upload a Word document with tokens like {{customer_name}}
  4. DocGenLab will automatically extract all tokens

Option B: Use the HTML Builder

  1. Navigate to TemplatesNew Template
  2. Click Builder
  3. Design your template with the visual editor
  4. Insert tokens using the Insert Token button

3. Generate Your First Document

  1. Open your template
  2. Go to the Generate tab
  3. Fill in the token values
  4. Click Generate Document
  5. Download your PDF or DOCX!

4. (Optional) Get an API Key

For programmatic access:

  1. Navigate to SettingsDeveloper
  2. Click Create API Key
  3. Copy your key (starts with dgl_)
  4. 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.