TiloBox
Back to directory
LicenseAGPL-3.0
GitHub stars8.9k
Last commit1 weeks ago
Tags6 topics
PdfDigital SignatureFormsE SignatureDocusign AlternativeSecurity
Overview

Why consider DocuSeal?

DocuSeal is an open-source alternative to DocuSign and PandaDoc that allows organizations to create PDF signing templates, collect verified e-signatures, and embed signature workflows into apps.

Guided learning

Learn DocuSeal by building

Practical setup notes, real use cases, and copy-ready examples in one focused guide.

1 min read 3 sections
In this guide3 sections

Overview of DocuSeal

DocuSeal is an open-source document signing system with PDF template editing, mobile-friendly signature capture, audit trails, and automated email reminders. It can be integrated into your own SaaS platforms using Webhooks and REST APIs.

Running with Docker

Start a standalone DocuSeal instance with SQLite:

bash
1docker run -d \
2 --name docuseal \
3 -p 3000:3000 \
4 -v docuseal_data:/data \
5 docuseal/docuseal:latest

Access the app on http://localhost:3000 to register an administrator account, upload PDF documents, and position signature and text fields.

API Integration

DocuSeal provides straightforward REST endpoints to submit signature requests programmatically:

bash
1curl -X POST https://your-docuseal.com/api/v1/submissions \
2 -H "X-Auth-Token: YOUR_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "template_id": 1,
6 "submitters": [
7 { "email": "client@example.com", "name": "Jane Doe" }
8 ]
9 }'

DocuSeal is licensed under the GNU AGPL-3.0 license.

Related tools

More options with a similar category or technology profile.

DocuSeal FAQs

DocuSeal is listed as a Productivity tool on TiloBox. Review the overview, features, and official documentation on this page to decide whether it solves your specific workflow.

Start with the project's GitHub repository and official website for supported installation and deployment instructions. Test the setup with representative data or a small project before rolling it out more widely.

DocuSeal is listed under the AGPL-3.0 license. Read the complete license text and the project's notices before using, modifying, or distributing the software.

Production readiness depends on your requirements. Review maintenance activity, security practices, documentation, backup and upgrade procedures, and compatibility with your stack; then validate it in a non-production environment.

DocuSeal is listed as an alternative to Adobe Sign. Compare the core workflow, deployment model, integrations, and licensing against your must-have requirements before switching.