Everything you need to integrate FacturePro and automate your invoicing.
Welcome to FacturePro documentation. Our API allows you to create invoices, manage clients, and automate your billing workflow in minutes.
Install our SDK using npm:
Initialize the client with your API key:
import { FacturePro } from '@facturepro/sdk';
const client = new FacturePro({
apiKey: 'your-api-key',
environment: 'production'
});
const invoice = await client.invoices.create({
clientId: 'cli_123',
items: [{
description: 'Consulting',
quantity: 10,
unitPrice: 150.00,
vatRate: 20
}]
});
Start integrating FacturePro today and automate your invoicing.
🚀 Get API Access