Guide
How to Sign a Document via API
The Signbee API lets you send documents for signature with a single HTTP POST.
Steps
- 1
Get an API key from signb.ee (free)
- 2
POST to /api/v1/send with document content
- 3
Include sender and recipient details in the JSON body
- 4
Signbee generates the PDF and sends a signing link
- 5
Both parties sign and receive the certified PDF
Try it with curl
curl
curl -X POST https://signb.ee/api/send \
-H "Content-Type: application/json" \
-d '{
"content": "# Your Document\n\nContent here...",
"senderName": "Your Name",
"senderEmail": "you@email.com",
"recipientName": "Recipient",
"recipientEmail": "recipient@email.com"
}'Legal validity
Electronic signatures are legally binding under the ESIGN Act (US), eIDAS Regulation (EU), and Electronic Communications Act (UK). Every Signbee document includes a SHA-256 tamper-proof certificate.
Related resources
Try Signbee — free, no credit card.