Start building with the Contazen API in under 5 minutes
Create a Contazen account
Set up your company details
Get your API key
sk_live_...
Make your first API call
curl https://api.contazen.ro/v1/clients \ -H "Authorization: Bearer sk_live_YOUR_API_KEY"
curl -X POST https://api.contazen.ro/v1/invoices \ -H "Authorization: Bearer sk_live_YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "client_data": { "type": "b2b", "name": "Acme Corp SRL", "cui": "RO12345678", "address": "Str. Exemplu nr. 123", "city": "București", "email": "contact@acmecorp.ro" }, "items": [{ "description": "Web Development Services", "quantity": 10, "price": 100, "vat_rate": 21 }] }'
{ "success": true, "data": { "id": "inv_1a2b3c4d5e", "object": "invoice", "number": "CTZ-2024-00001", "document_type": "fiscal", "date": "2024-01-15", "due_date": "2024-02-14", "client": { "id": "9z8y7x6w5v", "name": "Acme Corp SRL", "cui": "RO12345678" }, "subtotal": 1000.00, "vat_amount": 210.00, "total": 1210.00, "currency": "RON", "status": "draft", "created_at": 1705334400 }, "meta": { "version": "v1", "response_time": "45.23ms" } }
Was this page helpful?