REST API — v1
Finova API Reference
Company-scoped REST API. Generate a key from Dashboard → Integrations → API Access. Send it in every request header.
OPTION A — API KEY HEADER
x-api-key: finova_live_your_key
OPTION B — BEARER TOKEN
Authorization: Bearer finova_live_your_key
BASE URL
https://finovaos.appAll responses are JSON · Rate limit: 1,000 req/hr7 endpoints
Quick test — cURL
# Financial summary for current month
curl -X GET "https://finovaos.app/api/external/summary" \
-H "x-api-key: finova_live_your_key"
# List last 10 invoices
curl "https://finovaos.app/api/external/invoices?limit=10" \
-H "x-api-key: finova_live_your_key"
# Create a new invoice
curl -X POST "https://finovaos.app/api/external/invoices" \
-H "x-api-key: finova_live_your_key" \
-H "Content-Type: application/json" \
-d '{"customerName":"Al-Saqr Retail","date":"2026-03-22","items":[{"name":"Widget A","qty":5,"price":1200}]}'
# Low-stock items only
curl "https://finovaos.app/api/external/inventory?low=1" \
-H "x-api-key: finova_live_your_key"Ready to integrate?
Generate your API key from the dashboard and start in minutes.