API specification for accessing financial data and reporting for financing companies. By implementing this specification, your API will serve as the data source for ReachApp, enabling all ReachSpec features with customizable configurations.
Reach pulls data from your API in two ways: on-demand sync (when a user clicks the sync button in ReachApp, Reach immediately calls your API endpoints to fetch the latest data) and nightly sync (Reach automatically performs scheduled data synchronization during off-hours to keep data current without interfering with customer workflows).
For authentication, OAuth 2.0 is used both for user sign-in and for API requests. Reach sends OAuth 2.0 access tokens in the Authorization: Bearer <token> header with every API request. Your API is responsible for validating these tokens and deciding whether to authenticate the request. Reach does not enforce authentication requirements - that decision is entirely up to your implementation.
Endpoints for retrieving basic company information and metadata.
This data helps Reach identify and configure the company within the platform. The fiscal month end is particularly important as it determines how Reach aligns reporting periods and calculates year-to-date figures.
Endpoints for accessing reference data such as chart of accounts, budgets, classes, and departments.
Reference data defines the structure and organization of financial information:
Chart of Accounts: The list of all accounts used for recording transactions (e.g., Cash, Accounts Receivable, Revenue, Rent Expense). This forms the foundation of all financial reporting.
Budgets: Named budget scenarios that contain planned/forecasted figures. Customers may have multiple budgets (e.g., "2025 Operating Budget", "Conservative Forecast").
Classes: Segments used to categorize transactions across the business (e.g., by product line, project, or region). Not all companies use classes.
Departments: Organizational units for tracking income and expenses by team or function (e.g., Sales, Marketing, Engineering). Not all companies use departments.
Reach uses this reference data to structure reports and allow customers to filter and slice their financial data.
Endpoints for retrieving non-financial metrics and operational KPIs.
Non-financial metrics are quantitative measures that aren't derived from the general ledger but are useful for business analysis. Examples include:
Headcount or FTE count
Units sold or produced
Customer count or subscriber count
Square footage or other capacity metrics
Any custom KPIs tracked in your system
These metrics can be used alongside financial data in Reach dashboards to calculate ratios (e.g., revenue per employee) or provide operational context.
Endpoints for accessing financial statements including profit and loss, balance sheet, and cash flow statements.
These endpoints return the core financial data that powers Reach's reporting, forecasting, and analysis features:
Profit and Loss (P&L): Shows revenues, expenses, and net income over a period. Values represent activity during each month.
Balance Sheet: Shows assets, liabilities, and equity at a point in time. Values represent ending balances for each month.
Cash Flow Statement: Shows cash movements categorized by operating, investing, and financing activities. Values represent cash changes during each month.
All endpoints support optional filtering by budget, class, and department to enable segment-level reporting.
Retrieves the Cash Flow Statement data showing cash movements by activity type. The statement is presented using the indirect method in the application.
Security
OAuth2
Path
CompanyIdstringrequired
Query
StartDatestring(date)required
Start date in YYYY-MM-DD format (e.g., 2025-01-01)
Example: StartDate=2025-01-01
EndDatestring(date)required
End date in YYYY-MM-DD format (e.g., 2025-01-31)
Example: EndDate=2025-01-31
BudgetIdstring
Optional budget identifier. When omitted, returns actuals.
ClassIdstring
Optional class identifier to filter by class.
DepartmentIdstring
Optional department identifier to filter by department.