Skip to content

contract-simple

The contract-simple template produces a clean, formal contract layout with numbered sections, party information, and signature lines. Suitable for service agreements, consulting contracts, and general business agreements.

<glyph-editor
api-key="gk_your_key"
template="contract-simple"
data='...'
></glyph-editor>
FieldTypeDescription
contract.titlestringContract title (e.g. “Service Agreement”)
contract.numberstringUnique contract identifier
contract.effectiveDatestringDate the contract takes effect
contract.termstringDuration of the contract
contract.jurisdictionstringGoverning law jurisdiction
parties.party1.namestringParty A name
parties.party1.addressstringParty A address
parties.party2.namestringParty B name
parties.party2.addressstringParty B address
sections[].numberstringSection number
sections[].titlestringSection heading
sections[].contentstringSection body text
FieldTypeDescription
signatures.showLinesbooleanWhether to display signature lines (default: true)
Terminal window
curl -X POST https://api.glyph.you/v1/create \
-H "Authorization: Bearer gk_your_key" \
-H "Content-Type: application/json" \
-d '{
"template": "contract-simple",
"data": {
"contract": {
"title": "Service Agreement",
"number": "CTR-2024-0042",
"effectiveDate": "March 1, 2024",
"term": "12 months",
"jurisdiction": "State of California"
},
"parties": {
"party1": {
"name": "Acme Solutions Inc.",
"address": "100 Innovation Drive\nSan Francisco, CA 94105"
},
"party2": {
"name": "Northwind Traders LLC",
"address": "250 Commerce Street\nPortland, OR 97201"
}
},
"sections": [
{
"number": "1",
"title": "Scope of Services",
"content": "The Service Provider agrees to deliver software development consulting services as outlined in Exhibit A."
},
{
"number": "2",
"title": "Compensation",
"content": "The Client agrees to pay the Service Provider a monthly retainer of $15,000 USD, due on the first business day of each month."
},
{
"number": "3",
"title": "Confidentiality",
"content": "Both parties agree to maintain the confidentiality of all proprietary information shared during the term of this agreement."
},
{
"number": "4",
"title": "Termination",
"content": "Either party may terminate this agreement with thirty (30) days written notice."
}
],
"signatures": {
"showLines": true
}
}
}'