Build e-Signatures into Anything with Signus APIs
Integrate legally binding e-signatures with simple REST calls. Templates, multi-signer, MCP, and AI document intelligence — one API.
Authentication & Tokens
Send from template
Create a document from a reusable template and assign signers. The most common integration pattern.
.../documents/from-template
Send for Signature
Send a draft document out for signing. Signers receive an email with a link to review and sign.
.../documents/{id}/send
Check Document Status
Get the current status (DRAFT, PENDING, COMPLETED) and see which signers have signed.
.../documents/{id}
Download Signed PDF
Download all document files merged into a single signed PDF after completion.
.../documents/{id}/files/combined/content
List Templates
Browse available templates in your account. Find template IDs and recipient roles for automation.
.../templates
Get Template Details
Inspect a template's files, parties (recipient roles), and field positions before sending.
.../templates/{id}
Migrate from your current eSignature API with one line of code
Backward-compatible with DocuSign, DocuSeal, Adobe Sign, and Zoho Sign. Change the endpoint. Keep your logic.
js
// Before
// After
restapi";
Zero to signed in 5 minutes
You need an API key, an HTTP client, and a template in the Signus UI.
Create your account
Sign up at app.signus.ai/login. No credit card required.
Get your API key
Go to Settings → Developer. Click Create API Key, copy both the key and your Account ID.
Create a template
Create or upload a reusable template, signer role, and required signature fields.
Ping the API
Make a quick test call to confirm your API key is working.
Bash
$ curl https://api.signus.ai v1/ping \
-H 'Authorization: Bearer YOUR_KEY'
JSON
{ "status": "ok" }
Send your first document
Use your template to create a signature request, add your signers, and send.
Account ID
Use this identifier when making API requests to /v1/accounts/{ACCOUNT_ID}/…
API keys
Create and manage API keys for programmatic access.
No API keys yet. Create one to get started.
Build with your favorite AI assistant
Build with AI assistants
The Signus MCP server lets your AI tools interact with the API in natural language.
Example prompts
Claude Code config

Full API reference
Interactive references at api.signus.ai/docs
Authentication & Tokens
/api/v1/templates
Create template
/api/
Get template details
/api/v1/documents/upload
Upload document
/api/
Download document
/api/v1/agreement-sets
Create agreement set
/api/
Get template details
/api/v1/embedded-signing-url
Get embedded signing URL
/api/
Send reminders
/api/
Update recipients
/api/v1/signature-requests
Create signature request
/api/
Cancel request
/api/
Resend request
