Documentation

Documentation

Everything you need to integrate FacturePro and automate your invoicing.

Introduction

Welcome to FacturePro documentation. Our API allows you to create invoices, manage clients, and automate your billing workflow in minutes.

🚀 New: API v2.0 is now available with improved performance and new features.

Installation

Install our SDK using npm:

npm install @facturepro/sdk

Configuration

Initialize the client with your API key:

import { FacturePro } from '@facturepro/sdk';

const client = new FacturePro({
  apiKey: 'your-api-key',
  environment: 'production'
});

Create an Invoice

const invoice = await client.invoices.create({
  clientId: 'cli_123',
  items: [{
    description: 'Consulting',
    quantity: 10,
    unitPrice: 150.00,
    vatRate: 20
  }]
});

Ready to start building?

Start integrating FacturePro today and automate your invoicing.

🚀 Get API Access