Quote template
Free PDF quote template (JSON)
A ready-made quote document model. Copy the JSON, or let your AI adapt it to your data and add it to your app.
How to use it
Ask your AI
Tell your coding agent "add quote PDFs to my app" and paste this model. It wires the kove API in for you.
From your app
Send the model to the hosted API with your key.
curl -X POST https://api.kove.dev/v1/documents \
-H "Authorization: Bearer $KOVE_KEY" \
-H "Content-Type: application/json" \
-d '{"document": { ... }}' > quote.pdfOr locally, free
Save the model as quote.json and render it on your machine.
npx kove render quote.json -o quote.pdfThe model
This is the whole document. Copy it, or hand it to your AI to adapt.
{
"page": {
"size": "A4",
"margin": "18mm"
},
"header": {
"repeat": true,
"text": "Creative Studio · quotes@studio.com"
},
"footer": {
"repeat": true,
"pageNumbers": "Page {page} of {pages}"
},
"body": [
{
"type": "heading",
"text": "Quote P-0042"
},
{
"type": "fields",
"items": [
{
"label": "For",
"value": "Nordia Retail"
},
{
"label": "Date",
"value": "2026-06-28"
},
{
"label": "Valid for",
"value": "30 days"
},
{
"label": "Contact",
"value": "Ana Ruiz"
}
]
},
{
"type": "text",
"text": "Thanks for your interest. Here is the detail of our proposal for the online store project."
},
{
"type": "divider"
},
{
"type": "table",
"repeatHeader": true,
"keepRowTogether": true,
"columns": [
{
"key": "item",
"label": "Item"
},
{
"key": "qty",
"label": "Qty",
"align": "right"
},
{
"key": "price",
"label": "Price",
"align": "right"
},
{
"key": "total",
"label": "Total",
"align": "right"
}
],
"rows": [
{
"item": "Store audit and architecture",
"qty": "1",
"price": "$900.00",
"total": "$900.00"
},
{
"item": "UI design (15 screens)",
"qty": "1",
"price": "$3,000.00",
"total": "$3,000.00"
},
{
"item": "Frontend development",
"qty": "1",
"price": "$4,500.00",
"total": "$4,500.00"
},
{
"item": "Payment gateway integration",
"qty": "1",
"price": "$800.00",
"total": "$800.00"
}
]
},
{
"type": "totals",
"keepWithPrevious": true,
"lines": [
{
"label": "Subtotal",
"value": "$9,200.00"
},
{
"label": "Tax 8%",
"value": "$736.00"
},
{
"label": "Total",
"value": "$9,936.00",
"emphasis": true
}
]
},
{
"type": "spacer",
"size": "10mm"
},
{
"type": "section",
"keepTogether": true,
"title": "Notes",
"body": [
{
"type": "text",
"text": "Estimated delivery is 6 weeks from acceptance."
},
{
"type": "text",
"text": "This quote does not include third-party licenses or hosting."
}
]
}
]
}