Module
Digital and printable invoices with auto-numbering, line items, tax support, and email delivery.
Professional invoicing without the accounting software complexity.
Per-tenant sequence with configurable prefix. Zero-padded 5-digit numbers like INV-00001.
Add multiple line items with description, quantity, and unit price. Optional flat tax applied to subtotal.
Server-side rendered HTML invoice with clean typography. Open in browser and print to PDF.
Send invoices directly to customers via email. Configure a sendTo address per invoice.
Set currency per invoice (default EUR). All amounts stored in cents for precision.
Export all invoices as CSV with line items, totals, and status for accounting.
Any business that needs to issue invoices can use NexusKit Invoicing.
Issue professional invoices to clients with auto-numbering and email delivery.
Generate invoices for products or services without accounting software overhead.
Create invoices for custom plans, add-ons, or one-time charges alongside your subscription system.
Invoice clients for projects with detailed line items and tax calculation.
Create an invoice, get a printable HTML view, and optionally email it to your customer.
POST /v1/invoices
{
"buyer": {
"name": "Acme Corp",
"email": "[email protected]"
},
"lineItems": [
{ "description": "Website design", "quantity": 1, "unitCents": 50000 },
{ "description": "Hosting (12 months)", "quantity": 12, "unitCents": 1500 }
],
"currency": "EUR",
"taxCents": 10300,
"sendTo": "[email protected]"
}GET /v1/invoices/:id/print
// Returns text/html — open in browser and print to PDFGET /v1/invoices/export.csv
// Returns text/csv with all invoicesEach tenant gets a sequence starting at 00001. The prefix defaults to INV but is configurable. Numbers are zero-padded to 5 digits (INV-00001, INV-00002, etc.).
Yes, within fair-use limits. No monthly caps on invoice creation — just rate limits on the API (120 RPM).
Yes. Set the sendTo field when creating an invoice. The HTML invoice is sent via the mail queue automatically.
Clean, professional HTML with Georgia serif font, styled table layout, and formatted currency. Open in browser and print to PDF.
The current template is a clean, professional default. Custom templates are on the roadmap.
Start free. No credit card. Issue your first invoice in minutes.