TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/astrxnomo/financial-analytics-agent/llms.txt
Use this file to discover all available pages before exploring further.
/api/finance/profitability endpoint returns a per-department breakdown of income, expense, net profit, and profit margin for a given date range. It is the right choice for questions about which departments drive revenue, how much each department contributes to net profit, and where margins are strongest or weakest. Results are sorted most-profitable-first by net income, so the top revenue-generating departments appear at the top of the list. Use departments to narrow the response to a subset of departments when you only need to compare a few cost centers or revenue units side by side.
Request
Start of the date range in
YYYY-MM-DD format. Inclusive — transactions on this exact date are included.End of the date range in
YYYY-MM-DD format. Inclusive — transactions on this exact date are included.Optional comma-separated list of department names to include in the response (e.g.
Sales,Engineering). Whitespace around commas is trimmed automatically. When omitted, all departments are returned.Response
The response is an array ofProfitByDept objects, one per department, sorted by net descending — the most profitable department appears first.
The department name (e.g.
Sales, Engineering, Marketing).Total income recorded by this department in the date range.
Total expense recorded by this department in the date range.
Net profit for this department, calculated as
income - expense. A negative value indicates the department spent more than it earned — expected for cost-center departments.Net profit margin, calculated as
net / income. Returns null for departments with zero income (cost centers). A value of 0.741 means 74.1% of revenue was retained as profit after expenses.Cost-center departments — Marketing, Operations, and Finance — book no revenue in the seeded dataset, so their
margin is always null. This is correct and expected behavior: dividing by zero income is undefined, and returning null clearly distinguishes “no revenue” from a 0% margin (which would imply break-even). The chart UI displays null margin as “n/a” rather than 0%.Examples
Profitability for all departments
Filter to revenue-generating departments only
Error Response
If eitherfrom or to is missing, the endpoint returns a 400 Bad Request: