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.

Michael Beckett
Michael Beckett

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

Markdown — copy and customize
# 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

JavaScript — send for e-signature
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

TypeUsed forTemplate available
Standard contractService agreements, SOWsAbove ↑
NDAConfidentiality agreementsNDA template
Freelance contractIndependent contractor workFreelance template
Lease agreementRental contractsReal estate template
Liability waiverEvents, sports, gymsWaiver 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.

Related resources