Resources
Forms Library
Browse SigPen’s library of legal form templates and create ready-to-send documents from them.
Business plan only
Create document from form (Business only)
| Parameter | Type | Description |
|---|---|---|
form_idrequired | string | |
prefilloptional | object | |
titleoptional | string |
POST /api/v1/documents/from-form
curl -X POST \
https://www.sigpen.com/api/v1/documents/from-form \
-H "Authorization: Bearer sp_test_your_key" \
-H "Content-Type: application/json" \
-d '{
"form_id": "tpl_123",
"title": "Mutual NDA"
}'List available forms (Business only)
| Parameter | Type | Description |
|---|---|---|
stateoptional | string | |
categoryoptional | string | |
searchoptional | string |
GET /api/v1/forms
curl -X GET \ https://www.sigpen.com/api/v1/forms \ -H "Authorization: Bearer sp_test_your_key"
GET /api/v1/forms/{id}
curl -X GET \ https://www.sigpen.com/api/v1/forms/form_123 \ -H "Authorization: Bearer sp_test_your_key"