May 1, 2026 · Templates
Contract Signature Page Template: Add a Sign-Here Block via API
Need a professional signature page for your contract? Here's a ready-to-use template — and how to send it for e-signature with one API call.
Founder, Signbee
TL;DR
A signature page needs: party names, titles, dates, and an acknowledgment statement. Copy the template below, customize it, and send it for e-signature with one API call. The signed PDF includes a SHA-256 signing certificate for legal validity.
Signature page template
# Signature Page This signature page is an integral part of the [AGREEMENT NAME] dated [DATE] (the "Agreement") between the undersigned parties. ## Acknowledgment By signing below, each party acknowledges that: 1. They have read and understood the Agreement 2. They are authorized to sign on behalf of their respective organization 3. They agree to be bound by the terms set forth in the Agreement ## Party A **Company:** [COMPANY_A_NAME] **Name:** [SIGNER_A_NAME] **Title:** [SIGNER_A_TITLE] **Date:** [DATE] ## Party B **Company:** [COMPANY_B_NAME] **Name:** [SIGNER_B_NAME] **Title:** [SIGNER_B_TITLE] **Date:** [DATE]
Send via API
const contract = generateContract(deal);
const signaturePage = generateSignaturePage(deal);
const res = await fetch("https://signb.ee/api/v1/send", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_KEY",
},
body: JSON.stringify({
markdown: contract + "\n\n---\n\n" + signaturePage,
recipient_name: deal.clientName,
recipient_email: deal.clientEmail,
}),
});
const { signing_url } = await res.json();Types of signature pages
| Type | Used for | Template available |
|---|---|---|
| Standard contract | Service agreements, SOWs | Above ↑ |
| NDA | Confidentiality agreements | NDA template |
| Freelance contract | Independent contractor work | Freelance template |
| Lease agreement | Rental contracts | Real estate template |
| Liability waiver | Events, sports, gyms | Waiver template |
Frequently Asked Questions
What should a contract signature page include?
Agreement title and date, signature lines for all parties, printed names and titles, company names, dates of signing, and an acknowledgment that the signer has read and agrees to the terms.
Is an electronic signature page legally binding?
Yes — under the ESIGN Act and eIDAS. Electronic signature pages are legally equivalent to wet-ink signatures for virtually all commercial contracts.
Send contracts for signature — 5 free/month, SHA-256 certified.
Last updated: May 1, 2026 · Michael Beckett is the founder of Signbee and B2bee Ltd.