Skip to content

invoice-clean

The invoice-clean template provides a clean, professional invoice layout with a bold accent bar, structured line items, and clear payment information. Ideal for freelancers, agencies, and service businesses.

<glyph-editor
api-key="gk_your_key"
template="invoice-clean"
data='...'
></glyph-editor>
FieldTypeDescription
invoice.numberstringUnique invoice identifier
invoice.datestringInvoice issue date
invoice.dueDatestringPayment due date
billTo.namestringRecipient name
lineItems[].descriptionstringItem description
lineItems[].quantitynumber/stringQuantity
lineItems[].ratenumber/stringUnit rate
lineItems[].amountnumber/stringLine total
totals.subtotalnumber/stringSubtotal before tax
totals.totalnumber/stringFinal total
branding.companyNamestringYour company name
FieldTypeDescription
invoice.paymentTermsstringPayment terms and instructions
invoice.notesstringAdditional notes
billTo.companystringClient company name
billTo.addressstringBilling address
billTo.emailstringClient email
lineItems[].detailsstringExtended item description
totals.taxnumber/stringTax amount
totals.taxRatenumberTax percentage
branding.logoUrlstringLogo image URL
branding.logoInitialstringSingle letter fallback when no logo
branding.companyAddressstringYour company address
styles.accentColorstringAccent color (default: #2563eb)
Terminal window
curl -X POST https://api.glyph.you/v1/create \
-H "Authorization: Bearer gk_your_key" \
-H "Content-Type: application/json" \
-d '{
"template": "invoice-clean",
"data": {
"invoice": {
"number": "INV-2024-0042",
"date": "January 20, 2024",
"dueDate": "February 19, 2024",
"paymentTerms": "Net 30. Please include invoice number on all payments.",
"notes": "Thank you for your business."
},
"billTo": {
"name": "Sarah Chen",
"company": "Northwind Traders",
"address": "200 Commerce Blvd\nSuite 1400\nChicago, IL 60601",
"email": "sarah@northwind.com"
},
"lineItems": [
{
"description": "Brand Identity Package",
"details": "Logo, color palette, typography system",
"quantity": 1,
"rate": "4,500.00",
"amount": "4,500.00"
},
{
"description": "Marketing Collateral",
"details": "Business cards, letterhead, envelope design",
"quantity": 1,
"rate": "1,200.00",
"amount": "1,200.00"
},
{
"description": "Consultation Hours",
"quantity": 8,
"rate": "175.00",
"amount": "1,400.00"
}
],
"totals": {
"subtotal": "7,100.00",
"tax": "639.00",
"taxRate": 9,
"total": "7,739.00"
},
"branding": {
"logoInitial": "S",
"companyName": "Studio Forma",
"companyAddress": "88 Design District\nAustin, TX 78701"
},
"styles": {
"accentColor": "#2563eb"
}
}
}'