Skip to main content

Books quickstart

Fluide Books is the accounting product for chart of accounts, journal entries, invoices, bills, and financial reporting.

Prerequisites

Developer credentials and access token — Authorization.

1. Verify connectivity

curl -X GET "$FLUIDE_BASE_URL/api/v1/health" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "X-Fluide-Api-Key: $FLUIDE_API_KEY" \
  -H "X-Fluide-Client-Id: fluide-developer"

2. List chart of accounts

curl -X GET "$FLUIDE_BASE_URL/api/v1/chart-of-accounts" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "X-Fluide-Api-Key: $FLUIDE_API_KEY" \
  -H "X-Fluide-Client-Id: fluide-developer"
Books routes live under /api/v1/* without a product prefix. Use Books API reference for journals, invoices, bills, and reporting endpoints.

Typical flow

  1. Set up chart of accounts and fiscal periods
  2. Post journal entries or create invoices and bills
  3. Export financial reports (PDF via Utils when needed)

Books overview

GL, invoicing, and payroll integration.

Books API reference

Full endpoint list and playground.