RBI-regulated account aggregator (AA) integration API framework review
CAMS Finserv is a licensed Account Aggregator (AA) platform in India that enables secure, consent-based financial data sharing between Financial Information Providers (FIPs like banks/mutual funds) and Financial Information Users (FIUs like lenders/wealth managers). It provides clean APIs to verify customer bank statements, investment holdings, and insurance details in real-time, removing manual document uploads.
CAMS Finserv acts as a trust bridge in India's digital credit ecosystem. Under RBI's Account Aggregator framework, it allows financial platforms to request structured data directly from the user's accounts after explicit digital consent. It replaces traditional PDF bank statement scraping, which is prone to fraud and high rejection rates. By retrieving cryptographically signed JSON data straight from banks, CAMS Finserv dramatically reduces underwriting risk and operational cycles.
To scale operations efficiently, growth teams use this tool to optimize workflows, decrease technical debt, and build automated reporting systems. By integrating this platform directly into your product analytics pipeline, you can capture detailed user footprints, monitor server metrics, and ensure high deliverability/uptime rates.
Implement secure consent workflows where users authorize data sharing through OTP verification.
Fetch unified data across banks, mutual funds, depository accounts, and insurance policies.
Receive structured financial information directly in JSON format for instant credit scoring and analytics.
Ensure data privacy with end-to-end encryption from the source bank to the destination platform.
Pricing is indicative and may vary based on team size, contract length, and regional taxation.
| Plan Tier | Price | Core Features Included |
|---|---|---|
| Consent Setup | Free | Setting up consent request, OTP delivery, and dashboard tracking for users. |
| Bank Statement Fetch | ₹2 - ₹5 per transaction | Successful data retrieval from major PSU and private banks (charged per transaction based on monthly volumes). |
| Demat & Investment Pull | ₹5 - ₹10 per transaction | Retrieval of mutual fund and depository asset details from NSDL, CDSL, and RTAs. |
CAMS Finserv charges purely on successful API data pulls. Pricing scales down with volume: low-volume startups pay ₹8 to ₹10 per statement retrieve, while high-volume digital lenders pay closer to ₹2 per transaction. Standard GST of 18% applies under SAC 998314. Consent setup is free; API failures due to bank timeouts are generally not billed.
CAMS Finserv operates as an RBI-regulated Account Aggregator (AA) gateway implementing the ReBIT financial data sharing specification. The platform manages consent artifact creation, OTP-based user authentication, and decoupled data fetch requests between Financial Information Users (FIUs) and Financial Information Providers (FIPs). Financial telemetry data—including bank statements, mutual fund folios, and GST returns—is encrypted end-to-end using asymmetric key pairs generated at the FIP layer, ensuring secure transit without payload decryption at the AA intermediary level.
### Integration Playbook: Account Aggregator Consent Flow Ensure the CAMS AA widget is triggered after displaying a trust screen outlining the data retrieved. On callback success, parse the encrypted JSON package and store it in your database: ```javascript // AA Success Webhook Receiver Handler app.post('/api/aa/consent-callback', async (req, res) => { const { consentId, status, dataKey } = req.body; if (status === 'CONSENT_GRANTED') { const encryptedData = await fetchAAData(consentId); const decryptedJSON = decryptAAData(encryptedData, dataKey); await processCreditUnderwriting(decryptedJSON); res.status(200).send({ success: true }); } else { res.status(400).send({ error: 'Consent denied or timed out' }); } }); ``` To prevent user drop-off, load the AA redirect page in an inline iframe or secure overlay rather than redirecting the main page.
One actionable growth breakdown every morning, across 12 industries — with an audio version in 21 languages. No fluff, just hard product teardowns and India benchmarks.