Protocol analysis, OpenData ingestion, and production-ready APIs around the Renda FII app, B3 corporate-events feeds, and the Brazilian Fundos Imobiliarios ecosystem.
Renda FII (developed by Takamura Labs) is one of Brazil's most-used FII trackers, with 100K+ Android installs and a 4.7-star Google Play rating. It tells investors how much each Fundo de Investimento Imobiliario will pay and when, derived from the public reports published daily by B3 (BM&F Bovespa). We deliver protocol analysis and integration services around that data so wealth-tech, accounting, and tax platforms can query it programmatically.
Read and write the user's wallet: ticker, share count, average price, broker tag. Mirrors the structure Renda FII exposes after its late-2025 average-price update, so existing app users can migrate or duplicate data without re-entering it.
Returns expected and confirmed monthly payouts per ticker, derived from B3 corporate-event filings and CVM Informes Mensais. Useful for cash-flow forecasting, fee-on-yield calculators, and "estimated monthly income" widgets like the one Renda FII shows on the home tab.
Exports the per-FII payment ledger as JSON, CSV, Excel, or PDF — ideal for feeding accounting tools and Imposto de Renda software, where Brazilian investors must declare FII rendimentos on a monthly basis.
Triggers your backend when a payment date is approaching, when an announcement is published on Fundos.NET, or when a fund's distribution differs materially from its trailing average — a server-side equivalent of the in-app dividend alerts.
Renda FII already supports CSV import and "send to email / drive" backup. We standardize that payload into a versioned schema so platforms like Mais Retorno, Gorila, Kinvo, or in-house tools can ingest it cleanly.
Joins Renda FII data with public B3 sources (IFIX composition, ranking de FIIs mais negociados — the 2025 list led by KNCR11, XPML11, CPLG11, MXRF11) and CVM Informes so consumers get one record per ticker, including liquidity and segment classification.
The table below summarizes the structured data we can expose, mapped to the Renda FII screen or upstream public source it originates from. This is the OpenData inventory most fintech and wealth-tech consumers ask for.
| Data type | Source (screen / feed) | Granularity | Typical use |
|---|---|---|---|
| FII positions (ticker, qty, avg. price) | "Meus FIIs" portfolio screen | Per user / per ticker | Wealth dashboards, broker reconciliation |
| Announced dividend per cota | B3 corporate-event filings (daily) | Per ticker / per month | Yield analytics, MXRF11/HGLG11/KNCR11 income forecasts |
| Payment date & ex-date | BM&F Bovespa public reports | Per ticker / per event | Cash-flow planning, next-payout widgets |
| Buy-by cut-off date | "Quando vou receber" tab | Per month | Trade-decision automation, Telegram bots |
| Past payments ledger | "Histórico" tab (added Feb 2024) | Per ticker / per pay-date | Imposto de Renda 2025 declaration, yield-on-cost |
| Estimated monthly income (BRL or %) | Home dashboard | Per portfolio | Personal finance apps, FIRE calculators |
| Fund metadata (segment, P/VP, last quote) | Enrichment via brapi / Dados de Mercado / OkaneBox | Per ticker | Screeners, IFIX composition reports |
Below are example payloads we deliver. Auth uses a customer-issued bearer token; rate limits and idempotency keys are documented in the OpenAPI spec we ship with the source code.
POST /api/v1/rendafii/portfolio
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"user_ref": "u_29381",
"include_avg_price": true,
"include_segment": true
}
200 OK
{
"user_ref": "u_29381",
"positions": [
{"ticker": "MXRF11", "qty": 1200, "avg_price": 9.84, "segment": "Recebiveis"},
{"ticker": "HGLG11", "qty": 45, "avg_price": 158.72, "segment": "Logistica"},
{"ticker": "KNCR11", "qty": 300, "avg_price": 102.10, "segment": "Recebiveis"}
],
"updated_at": "2026-04-15T03:12:00-03:00"
}
GET /api/v1/rendafii/dividends?user_ref=u_29381&month=2026-05
Authorization: Bearer <ACCESS_TOKEN>
200 OK
{
"month": "2026-05",
"expected_total_brl": 1843.27,
"items": [
{"ticker": "MXRF11", "per_cota": 0.10, "qty": 1200, "amount": 120.00, "pay_date": "2026-05-15", "buy_by": "2026-04-30"},
{"ticker": "HGLG11", "per_cota": 1.05, "qty": 45, "amount": 47.25, "pay_date": "2026-05-14", "buy_by": "2026-04-30"},
{"ticker": "KNCR11", "per_cota": 1.18, "qty": 300, "amount": 354.00, "pay_date": "2026-05-13", "buy_by": "2026-04-29"}
],
"source": "B3 / Fundos.NET"
}
POST https://your-app.example.com/hooks/rendafii
X-Signature: t=...,v1=...
Content-Type: application/json
{
"event": "fii.distribution.announced",
"ticker": "BTLG11",
"per_cota": 0.78,
"ex_date": "2026-04-30",
"pay_date": "2026-05-12",
"source_url": "https://fnet.bmfbovespa.com.br/...",
"received_at": "2026-04-26T18:42:11-03:00"
}
# error envelope (standardized across endpoints)
{
"error": {"code": "rate_limited", "message": "60 req/min exceeded", "retry_after": 12}
}
Brazilian FII data sits at the intersection of capital-markets disclosure rules and personal-data protection. Our integrations are built to align with the LGPD (Lei Geral de Proteção de Dados, Lei 13.709/2018), CVM disclosure norms, and — where an upstream broker is involved — the Open Finance Brasil framework, currently on its 4th phase covering investments, with version 7.0 of the Open Finance APIs Manual published in 2025 under BCB Normative Instruction nº 615 and built on the FAPI security profile. Consents are granular and time-boxed (up to 12 months), audit logs are persisted, and no payload is retained beyond the contracted scope.
The standard pipeline is intentionally short and inspectable:
Renda FII targets Brazilian retail FII investors — a segment that, according to B3, reached 3.13 million unique cotistas by March 2026 across 434 listed funds. The user base skews mobile-first (the app ships on Android and iOS, with no web client) and centers around the "renda passiva" / FIRE community that prioritizes monthly dividend visibility. Integrators commissioning this work are typically Brazilian wealth-tech startups, IFAs, accountants serving high-volume PJ investors, content creators with FII portfolios for their audience, and overseas products covering Brazilian REITs (FIIs) for diaspora or LATAM-focused investors.
Click any screenshot to see a larger version.
The Brazilian FII tracking and consolidation ecosystem is wide, and most teams that integrate Renda FII end up touching one or more of the products below. We frame them as adjacent surfaces, not as comparisons: each holds slightly different data, and unified exports across them are a recurring ask.
We are an independent technical studio focused on App interface integration, OpenData / Open Finance, and authorized API analysis. Our team includes engineers from banks, brokers, payments, and protocol-analysis backgrounds, and we work specifically on Brazilian capital-markets data (FII, ETFs, ações), LATAM payment rails, and overseas integrations.
For a quote on Renda FII integration, an Open Finance Brasil bridge, or a converter between FII trackers, send your target app and requirements:
You only need to share the target app name and requirements. We deliver runnable API source code and documentation, or a hosted pay-per-call endpoint.
What do you need from me to start?
How long does delivery take?
How do you handle compliance?
Can you also integrate similar apps like Finy FII, Kinvo, or Mais Retorno?
Renda FII (package com.takamuralabs.meusfiis) is a Brazilian mobile app developed by Milton Eiji Takamura under Takamura Labs. It is designed for investors who hold Fundos de Investimento Imobiliarios (FIIs) and want monthly visibility into how much each fund will pay and when. Data is updated daily from public reports published by BM&F Bovespa (now B3).