Term Sheet

Template Overview

  • Template ID: term-sheet
  • Version: 2.0.0

To generate this document, pass the structured data described below into the data property of the /api/v1/documents/generate endpoint.


Data Payload Schema

FieldTypeRequirementDescription & Details
mainClientbooleanNoIs your company the target company in this term sheet? Select "Yes" if this term sheet is for an investment in your company. Select "no" if your company is the investor.
isCompanybooleanNoIs the Investor an entity? A party is an entity if it is anything other than an individual Ex: Company, Business name, NGO
rcNamestringConditionalEntity Name Required if isCompany is true.
firstNamestringConditionalFirstname Required if isCompany is false.
lastNamestringConditionalLastname Required if isCompany is false.
targetRcNamestringConditionalTarget Company Name Required if mainClient is false.
targetAddressstringConditionalAddress of Target Company Required if mainClient is false.
businessstringConditionalWhat is the business of the target company? Ex: the buying and selling of US Stocks Required if mainClient is false.
currencystringNoWhat is the currency for the investment? Options: "$", "₦", "ZAR", "£", "Other"
customCurrencystringConditionalInsert the appropriate currency Required if currency is "Other".
investmentAmountnumberNoWhat is the Investment Amount? Ex: 100,000
shareTypestringNoWhat types of shares will the Investor receive? Options: "Ordinary Shares", "Preference Shares"
preMoneyValuationnumberNoWhat is the Pre-Money Valuation of the Company? This is the agreed valuation of the company prior to injection of the investment. Ex: 5,000,000
postMoneyValuationnumberNoWhat is the Post-Money Valuation of the Company? This is the agreed valuation of the company following the investment. Ex: 5,000,000
currency2stringNoWhat is the currency for the share capital of the company? Options: "$", "₦", "ZAR", "£", "Other"
customCurrency2stringConditionalInsert the appropriate currency Required if currency is "Other".
totalIssuedShareCapitalnumberNoWhat is the Company’s total issued share capital? These are the total number of shares that have been issued to shareholders. Ex: 10000000
pricePerSharenumberNoWhat is the price per share for each share in the Company?
additionalRightsarray of stringsNoThese are rights that the investor will have as a shareholder in the company.Ex: the right to audited financials of every financial year.
disputebooleanNoGoverning law and Dispute resolution Courts are typically slower and cheaper. While arbitration is a generally faster but more expensive dispute resolution process.. Values: true (By Arbitration), false (By the court).
governingLawstringNoWhat is the governing law? Must be a valid value from the Supported Countries list.

Example JSON Payload

Here is an example of a properly formatted data object for the Term Sheet template.

{
  "templateId": "term-sheet",
  "data": {
    "mainClient": true,
    "isCompany": true,
    "rcName": "Acme Corp",
    "currency": "$",
    "investmentAmount": 100000,
    "shareType": "Ordinary Shares",
    "preMoneyValuation": 5000000,
    "postMoneyValuation": 5000000,
    "currency2": "$",
    "totalIssuedShareCapital": 10000000,
    "pricePerShare": 100000,
    "additionalRights": [
      "Sample Additional Rights"
    ],
    "dispute": true,
    "governingLaw": "Nigeria"
  },
  "format": "pdf"
}