When you need deep financial data capabilities, generalist platforms give you basic connectivity. You still build the hard parts: data intelligence, enrichment, and user experience.
When you need deep financial data capabilities, generalist platforms give you basic connectivity. You still build the hard parts: data intelligence, enrichment, and user experience.
When you need deep financial data capabilities, generalist platforms give you basic connectivity. You still build the hard parts: data intelligence, enrichment, and user experience.
When you need deep financial data capabilities, generalist platforms give you basic connectivity. You still build the hard parts: data intelligence, enrichment, and user experience.
Clean GraphQL queries query
GetUserFinancials { profile { connections {
accounts { balance { current available }
transactions(first: 50) { amount description
category enrichment { merchant confidence } } } }
} }
Multiple REST endpoints GET /connections GET /accounts/:id
GET /transactions?
account=:id GET /enrichment/transaction/:id // Not available
// Quiltt: Enriched data included { "transaction":
{ "amount": -45.67, "description": "UBER TRIP",
"enrichment": { "category": "Transportation",
"merchant": "Uber Technologies", "confidence":
0.95, "tags": ["rideshare", "business_expense"] }
} }
Raw data only { "transaction": {
"amount": -45.67, "description": "UBER TRIP" //
Build your own enrichment } }
// React: Drop-in component import {
QuilttConnector } from '@quiltt/react'
<QuilttConnector connectorId="conn_123" onSuccess=
{handleConnection} onError={handleError} /> //
React Native, Flutter, iOS, Android SDKs available
Custom implementation required //
Limited SDK support // Build your own UI
components
"We evaluated both Quiltt and Meld.io. Quiltt's GraphQL API and built-in enrichment meant we shipped our MVP in 2 weeks instead of 2 months. When you're building financial products, you want a specialist, not a generalist."
npm install @quiltt/react
<QuilttConnector />
component