The Consumption Layer
Product-ready APIs (REST & GraphQL) and aggregate analytics. Visualise not just single users, but entire cohort behaviours.
API Philosophy: "Product-First"
We don't expose database tables. We expose Product Concepts. Developers shouldn't have to join 10 tables to show a "Monthly Spend" chart.
GET /transactions?type=debit&category=12 (Requires 5 calls to build a UI)GET /views/spend-analysis?period=current_monthThe "Unified 360" View (God Object)
The Holy Grail for Dashboard performance. Hydrate your entire home screen in one single network request.
GET /v1/views/profile/summaryThe Wealth & Portfolio View
Aggregate the world.
Technical Architecture
Built for speed. Optimized for scale.
CQRS (Command Query Responsibility Segregation)
We separate Writes (Core) from Reads (Views). Heavy analytical queries (e.g., "Show me spending trends over 5 years") never slow down transaction processing.
Flexible Interfaces
Developer Experience
We obsess over the "Time to Hello World."
The Query Builder SDK
Type-safe, auto-completed, and beautiful.
const dashboard = await fintra.views.getDashboard({
sections: ['net_worth', 'recent_transactions', 'forecast'],
period: '30d'
});Headless UI Hooks
Don't just get data. Get logic. We provide React/React Native hooks that handle loading states, caching, and error handling.
const { safeToSpend, loading } = useFintraCashflow();
return <Text>Safe to Spend: {safeToSpend}</Text>;Ready to integrate The Consumption Layer?
Get full access to the The Consumption Layer SDK and start building the future of finance today.