Authorized protocol analysis, contribution and redemption flows, statement and NAV APIs for FIDUCIA S.A.’s flagship retail investment app — built on OpenData and OpenFinance principles.
MI FONDO de Fiducia (package com.devsu.fiducia) is the first Ecuadorian app that lets retail savers invest in mutual funds from their phone, starting at $25/month. Behind that simple front end sits a rich body of structured data — fund balances, NAV history, contribution schedules, fund-of-funds allocations and KYC profiles — that finance teams, ERPs and wealth dashboards increasingly want to consume programmatically.
FIDUCIA S.A. has more than 25 years in the Ecuadorian fiduciary market, manages roughly USD 1.7 billion in assets and serves around 50,000 retail clients. MI FONDO is its mass-market digital channel and, since launching in 2020, has been the country’s first mobile app dedicated to retail mutual-fund investing. That gives it three properties that matter for OpenFinance integration: regulated data sources, structured server-side state per user, and recurring transactional flows.
All the funds distributed through the app — Mi Ahorro, Mi Futuro, Mi Retiro and the Inmobiliario fund — are AAA- rated by BankWatch Ratings, audited by Deloitte & Touche and supervised by the Superintendencia de Compañías, Valores y Seguros. From an integration perspective, that means data lineage is clean: every contribution, NAV update and redemption is anchored to a regulated emitter, which is exactly what compliance teams need before they connect a third-party pipeline.
For long-tail use cases such as “MI FONDO transaction export”, “Ecuador mutual fund API” or “FIDUCIA statement integration”, this is the kind of app whose data is highly valuable but currently locked behind a mobile-only UI. Our role is to bridge that gap with authorized, documented connectors.
Mirror the in-app authorization handshake (cedula + password + OTP, with biometric on supported devices) into an OAuth-style token your backend can refresh. Use it to bind a MI FONDO investor to your CRM record without storing raw credentials.
Daily NAV (valor cuota) for each fund — Mi Ahorro (short term), Mi Futuro (medium term), Mi Retiro (long-term retirement) and the Fondo Inmobiliario — with historical series for charting and benchmark calculations.
Programmatic aporte calls from $25, automatic monthly debit scheduling, and rescate (partial or total) requests that honor each fund’s notice period. Useful for goal-based reconciliation: tuition, retirement, or down-payment tracking.
Per-fund and consolidated movement statements with date ranges, paging and a stable transaction ID. Drives ERP imports, advisor dashboards and Excel-based tax reporting for the SRI (Servicio de Rentas Internas).
The app guides users through 4 onboarding steps and simulators (education, retirement, travel, home). We expose the simulator inputs/outputs as a typed API so external planners and robo-advisors can replicate FIDUCIA projections.
Since the 2024 product expansion, MI FONDO sells medical and dental plans from $5.25/month with SALUD S.A. backing. Policy issuance, premium status and claim history can be exposed as a complementary insurance API alongside the investment data.
The following inventory summarizes what MI FONDO de Fiducia stores server-side and how it typically maps to downstream OpenData/OpenFinance use cases. Granularity reflects what is observable in the app surface; final field names are confirmed during protocol analysis.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Investor profile & KYC | Sign-up & perfil | Per investor (cedula, contact, risk profile) | Onboarding, AML, advisor CRM enrichment |
| Fund catalog | Fondos / Mi Ahorro · Mi Futuro · Mi Retiro · Inmobiliario | Per fund: rating, currency, term, fees | Portfolio construction, dashboards |
| NAV history (valor cuota) | Detalle de fondo | Daily, per fund | Performance reporting, benchmarking |
| Participations / units held | Mi resumen | Per investor × per fund, current units & USD value | Position aggregation, wealth dashboards |
| Contribution movements (aportes) | Mis movimientos | Per transaction (date, amount, fund, channel) | Reconciliation with bank ACH debits |
| Redemption movements (rescates) | Mis movimientos | Per transaction (date, amount, fund, status) | Cashflow forecasting, audit logs |
| Goals & simulator runs | Calculadora / Mis metas | Per goal: target amount, horizon, monthly aporte | Goal tracking, robo-advisor sync |
| Health-plan policies | Salud (post-2024) | Per policy: plan, premium, beneficiaries | HR benefits portals, claim feeds |
| Tax certificates | Certificados | Annual per investor | SRI tax filing, accountant export |
An Ecuadorian fintech wants to show an investor a consolidated view of cash, mutual funds and term deposits. We mirror MI FONDO’s Mi resumen screen as a GET /portfolio endpoint that returns a list of participaciones with current USD value, last NAV, and 30/90/365-day return. Mapped to OpenFinance, this is a classic “account information” flow over an authorized session.
A small business holds reserve liquidity in Mi Ahorro. Their ERP needs to reconcile each monthly aporte against the bank ACH debit. We expose GET /movements?from=&to=&fund= with paging and a stable transaction_id, so the ERP can match transfers automatically and feed Ecuadorian accounting requirements (formato XML/SRI compatible).
A goal-based planning service wants to update progress in real time when an investor adds a child’s education goal in MI FONDO. We listen to the goal-creation event, fetch GET /goals/{id} with target amount and monthly aporte, then sync to the planner. This maps to OpenData “event sharing” on top of an OpenFinance account.
End-of-year tax certificates from FIDUCIA must be packaged for the Servicio de Rentas Internas. The integration delivers GET /tax-certificates?year=2025 returning a signed PDF and a structured JSON twin so an accountant’s software can ingest both — covering investment income and any health-plan deductions exposed via the SALUD S.A. extension.
FIDUCIA-aligned compliance teams or large family-office clients want an immutable feed of contributions and redemptions for audit. We push every movement.created event to an internal Kafka topic with masked PII, supporting downstream BI (Looker, Power BI) and risk control without re-deriving data from screenshots.
Below are three representative endpoint sketches. Final shape is confirmed during the protocol-analysis phase, but the request/response patterns are stable across MI FONDO’s mobile flows.
POST /api/v1/mifondo/auth/login
Content-Type: application/json
{
"id_type": "CEDULA",
"id_number": "1712345678",
"password": "<hashed>",
"device_id": "a8f5...c3",
"otp": "482910"
}
200 OK
{
"access_token": "eyJhbGciOi...",
"refresh_token": "rt_9b2c...",
"expires_in": 3600,
"investor_id": "INV-0027431",
"kyc_level": "FULL"
}
GET /api/v1/mifondo/movements
?fund_code=MI_AHORRO
&from=2025-09-01
&to=2026-04-28
&page=1&size=50
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"page": 1, "total": 137,
"items": [
{
"transaction_id": "TX-MA-0001872",
"type": "APORTE",
"amount": 25.00,
"currency": "USD",
"fund_code": "MI_AHORRO",
"units": 24.7831,
"nav": 1.0088,
"channel": "AUTO_DEBIT",
"executed_at": "2026-04-05T13:22:11-05:00",
"status": "SETTLED"
}
]
}
POST https://your-app.example/webhooks/mifondo
X-MIFONDO-Signature: t=1714291200,v1=8a52...
{
"event": "redemption.status_changed",
"investor_id": "INV-0027431",
"transaction_id": "TX-MR-0009321",
"fund_code": "MI_FUTURO",
"amount": 1500.00,
"currency": "USD",
"status": "PROCESSING", // or APPROVED, SETTLED, REJECTED
"expected_settlement": "2026-05-02",
"occurred_at": "2026-04-28T09:15:42-05:00"
}
# Recommended: verify HMAC signature, then idempotency-check transaction_id
# before persisting. Honor each fund’s reglamento on notice periods.
MI FONDO operates under FIDUCIA S.A., an entity supervised by Ecuador’s Superintendencia de Compañías, Valores y Seguros. Funds carry an AAA- risk rating from BankWatch Ratings and are audited annually by Deloitte & Touche. Any integration we deliver respects that regulatory perimeter.
On the data-protection side, Ecuador’s Ley Orgánica de Protección de Datos Personales (LOPDP, 2021) governs how investor data may be processed and shared, including consent, data minimization and breach notification — analogous to GDPR. Our delivery includes consent capture, a documented data-retention policy and a DPIA template tailored to mutual-fund flows.
Ecuador does not yet have a fully formalized OpenBanking standard the way Brazil or Colombia do; the country’s recent Fintech Law directed the central bank to lay the groundwork for OpenBanking and to publish APIs for interoperability. We design every MI FONDO connector so it can later snap into that emerging framework without a re-architecture.
A typical MI FONDO integration pipeline:
MI FONDO is positioned as Ecuador’s first retail mobile gateway to mutual funds, primarily targeting first-time investors aged 25–55 who want to start from $25/month. The user base is largely B2C — salaried employees in Quito, Guayaquil and Cuenca saving for tuition, retirement (Mi Retiro), travel, postgraduate studies or home purchase — with a smaller B2B segment of SMEs parking working-capital reserves in Mi Ahorro. Distribution is balanced across Android (Google Play) and iOS (App Store), with Android dominant in line with general Ecuadorian smartphone share. Since the 2024 expansion into SALUD S.A. health and dental plans, the app has also begun attracting family-oriented users seeking a single hub for savings and basic insurance.
Click any thumbnail to view a larger version. These are official MI FONDO de Fiducia store screenshots.
Investors and finance teams that integrate MI FONDO de Fiducia frequently work with the broader Ecuadorian fintech ecosystem. The apps below sit in the same retail-investing, mutual-fund or digital-banking space, and are commonly aggregated alongside MI FONDO in dashboards, ERP imports and OpenFinance pilots.
We are an independent technical studio specialized in App interface integration and authorized API integration. Our engineers come from banks, payment processors, OpenFinance vendors and protocol-analysis backgrounds. For Ecuadorian investment apps like MI FONDO de Fiducia, we combine:
To request a quote or send your target app and integration requirements, open our contact page:
We can also work under NDA and against documented public/authorized APIs only — no unauthorized access.
What do you need from me?
How long does delivery take?
How do you handle compliance?
Can you cover the SALUD S.A. health-plan extension?
Building one MI FONDO connector means handling Android + iOS quirks, certificate pinning, OTP flows, token rotation and subtle changes between fund types (Mi Ahorro vs. Mi Retiro vs. Inmobiliario). Doing it once for one team is a multi-month project; doing it as a packaged service compresses it to days, with a documented surface that survives app updates.
For finance and ops teams, that means moving faster from “we have an idea” to “we have transactional data flowing into our dashboard.”
MI FONDO de Fiducia (package com.devsu.fiducia) is the first app in Ecuador that lets retail users invest in the country’s leading mutual funds straight from their mobile phone, with no prior financial expertise required. Investors can start from $25 monthly and progress through four onboarding steps to begin saving for short-, medium- or long-term goals: a child’s education, a calm retirement, world travel, postgraduate studies, a home purchase, or simply a financial cushion for unexpected events.
MI FONDO is operated by FIDUCIA S.A., the leading company in the Ecuadorian investment-fund and fiduciary-business market, with more than 25 years of experience, around USD 1.7 billion in assets under management and roughly 50,000 satisfied clients. FIDUCIA S.A. is regulated by the Superintendencia de Compañías, Valores y Seguros; all of its investment funds are rated AAA- by BankWatch Ratings S.A. and audited annually by Deloitte & Touche. The funds invest in the Ecuadorian securities market, primarily in fixed-income instruments from the country’s top financial institutions and corporate issuers.
The app was originally built in 2020 as a digital channel to democratize access to FIDUCIA’s investment funds. In 2024 it expanded its product surface beyond pure investing: investors can now also contract medical and dental plans backed by SALUD S.A. from $5.25/month, turning MI FONDO into a broader personal-finance hub. The Ecuadorian press (Expreso, Primicias, Ekos Negocios) has highlighted it as a pioneering “invest from your phone” experience for a market where stock-market participation has historically been low.
For direct user contact, FIDUCIA points investors to mifondo@fiducia.com.ec and to its investment advisors at (593) 9 8500-9999. This page is not affiliated with FIDUCIA S.A.; it describes how authorized, compliant API integration on top of MI FONDO can be designed and delivered for third-party fintech, ERP, robo-advisor and analytics use cases.