April 25, 2026 · Templates
Free Agreement Form Templates with E-Signature: 5 Templates You Can Send in One API Call
Every business needs agreements — NDAs, service contracts, freelance deals, leases. Here are 5 free templates in markdown format that you can send for e-signature with a single API call.
Founder, Signbee
TL;DR
Five free agreement templates in markdown format, ready for electronic signature. Copy any template, customize the bracketed variables, and send via the Signbee API — one POST request, legally binding, SHA-256 certified. Free tier: 5 documents/month.
Template 1: Mutual NDA
The most common business agreement. Use when sharing confidential information with potential partners, investors, or clients. See our full NDA automation guide for details.
# Mutual Non-Disclosure Agreement
**Effective Date:** [DATE]
**Between:** [PARTY_A] ("Disclosing Party")
**And:** [PARTY_B] ("Receiving Party")
## 1. Confidential Information
"Confidential Information" means any non-public information
disclosed by either Party, including technical data, trade
secrets, business plans, and financial information.
## 2. Obligations
Each Party agrees to: (a) maintain strict confidentiality,
(b) not disclose to third parties, (c) use only for the
stated Purpose, (d) protect with reasonable care.
## 3. Exclusions
Excludes: publicly available info, independently developed
info, and court-ordered disclosures (with prompt notice).
## 4. Term
This Agreement remains in effect for [DURATION].
Confidentiality survives for [SURVIVAL_PERIOD] after
termination.
## 5. Governing Law
Governed by the laws of [JURISDICTION].
By signing below, each Party agrees to the terms above.Template 2: Freelance Contract
For independent contractors, freelancers, and gig workers. Covers scope, payment, IP rights, and termination.
# Freelance Services Agreement **Date:** [DATE] **Client:** [CLIENT_NAME], [CLIENT_ADDRESS] **Freelancer:** [FREELANCER_NAME], [FREELANCER_ADDRESS] ## 1. Services Freelancer agrees to provide the following services: [DESCRIBE_SERVICES] ## 2. Compensation Client agrees to pay [AMOUNT] [per hour / fixed fee]. Payment terms: Net [30/15/7] days from invoice date. ## 3. Timeline Start date: [START_DATE] Estimated completion: [END_DATE] ## 4. Intellectual Property All work product created under this Agreement is owned by [CLIENT / FREELANCER] upon full payment. ## 5. Termination Either party may terminate with [14/30] days written notice. Client pays for all work completed to date. ## 6. Independent Contractor Freelancer is an independent contractor, not an employee. By signing below, both parties agree to these terms.
Template 3: Service Agreement
# Service Agreement **Effective Date:** [DATE] **Provider:** [COMPANY_NAME] **Client:** [CLIENT_NAME] ## 1. Services Provider will deliver: [DESCRIBE_SERVICES] ## 2. Fees [AMOUNT] per [month/project/hour]. Payment due within [30] days of invoice. ## 3. Term Initial term: [12] months, auto-renewing unless cancelled with [30] days notice. ## 4. Warranties Provider warrants services will be performed in a professional manner consistent with industry standards. ## 5. Limitation of Liability Total liability limited to fees paid in the preceding [12] months. ## 6. Governing Law Governed by the laws of [JURISDICTION]. By signing below, both parties agree to these terms.
Template 4: Commercial Lease
# Commercial Lease Agreement **Date:** [DATE] **Landlord:** [LANDLORD_NAME] **Tenant:** [TENANT_NAME] ## 1. Premises [ADDRESS], approximately [SIZE] sq ft. ## 2. Term [START_DATE] to [END_DATE] ([MONTHS] months). ## 3. Rent [AMOUNT] per month, due on the [1st] of each month. Security deposit: [DEPOSIT_AMOUNT]. ## 4. Permitted Use [DESCRIBE_BUSINESS_USE] ## 5. Maintenance Tenant responsible for interior maintenance. Landlord responsible for structural and exterior. ## 6. Insurance Tenant shall maintain commercial general liability insurance of at least [AMOUNT]. By signing below, both parties agree to these terms.
Template 5: Consulting Agreement
# Consulting Agreement **Effective Date:** [DATE] **Consultant:** [CONSULTANT_NAME] **Client:** [CLIENT_NAME] ## 1. Engagement Client engages Consultant to provide: [DESCRIBE_CONSULTING_SERVICES] ## 2. Compensation [RATE] per [hour/day/project]. Expenses: [reimbursed / included in rate]. ## 3. Confidentiality Consultant will maintain confidentiality of all Client information and not disclose to third parties. ## 4. Intellectual Property All deliverables are work-for-hire and owned by Client. ## 5. Non-Compete [OPTIONAL: Consultant agrees not to provide similar services to [COMPETITORS] for [DURATION].] ## 6. Term and Termination Either party may terminate with [30] days notice. By signing below, both parties agree to these terms.
How to send any template via API
const template = `# Service Agreement
...your template content with variables filled in...`;
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: template,
recipient_name: "Jane Smith",
recipient_email: "jane@example.com",
expires_in_days: 7,
}),
});
const { document_id, signing_url } = await res.json();
// Recipient receives email → signs in browser → both get certified PDFFrequently Asked Questions
Are free agreement templates legally binding?
Yes — when properly signed by all parties. The template provides structure; the signatures and mutual assent create legal force. E-signatures with audit trails provide stronger evidence than paper.
Can I customize these templates?
Yes — replace all bracketed [VARIABLES] with your specific details. These are starting points — consult a lawyer for high-value or unusual agreements.
What agreement templates does every business need?
At minimum: NDA (protecting confidential info), service/freelance agreement (client work), and terms of service (if you have a product). Leases and consulting agreements are needed as you grow.
Send any template for e-signature — 5 free documents/month, no credit card.
Last updated: April 25, 2026 · These templates are for informational purposes. Consult a qualified attorney for your specific situation. Michael Beckett is the founder of Signbee and B2bee Ltd.