Fundrise API integration: portfolio & statement export

OpenFinance-style access to eREITs, the Innovation Fund (VCX), and private credit holdings — protocol analysis and runnable source code

From $300 · Pay-per-call available
OpenData · OpenFinance · Reg A+ · Innovation Fund VCX · Protocol analysis

Bring Fundrise alternative-asset holdings into your accounting, wealth, and reporting stack

Fundrise is the largest direct-to-consumer alternative asset manager in the United States, serving more than 2 million investors across a portfolio that has grown past $7 billion. Its mobile app exposes a rich set of structured records — fund-level positions, NAV history, dividend distributions, ACH funding, and tax forms — but until now most of that data has lived behind authenticated user sessions. We turn that into clean, OpenFinance-style endpoints you can call from your own services.

Multi-fund portfolio sync — Pull holdings across the Flagship Real Estate Fund, Income Real Estate Fund, the Opportunistic Credit Fund, every eREIT, the eFund, and Innovation Fund (now NYSE-listed as VCX), normalised into a single account schema.
Statements & tax documents — Programmatic retrieval of monthly statements, 1099-DIV, 1099-B and K-1 PDFs from the documents area, with parsed JSON metadata for downstream bookkeeping.
ACH & bank-link events — Mirror investment, distribution, and redemption movements that flow through linked Chase / Wells Fargo / Schwab accounts via the app's Plaid-style funding stack.

Data available for integration

The Fundrise mobile app and web client surface the structured records below. We map each one to a stable JSON schema so downstream systems — accounting platforms, family-office dashboards, robo-advisor tools — do not have to re-implement scraping logic per fund or per tax season.

Data typeSource screen / endpointGranularityTypical use
Account profile & investor planAccount > Settings, Plan pickerPer investor (Starter / Basic / Core / Advanced / Premium)KYC sync, segmentation, advisor reporting
Fund-level holdingsPortfolio > HoldingsPer fund (eREIT, eFund, Flagship, Income, Opportunistic Credit, Innovation Fund VCX)Net-worth dashboards, rebalancing models
NAV & share count historyPortfolio > PerformanceDaily share count, quarterly NAV per fundTime-weighted return calc, audit trails
Distributions & dividendsReturns > DistributionsPer payment (date, fund, amount, type)Cash-flow forecasting, reinvestment routing
Contributions & redemptionsTransfers > ActivityPer ACH / wire, with status (pending / settled / quarterly redemption queue)Liquidity planning, treasury reconciliation
Tax documentsDocuments > Tax formsAnnual: 1099-DIV, 1099-B, K-1; per fundTurboTax / CPA hand-off, Form 8949 / Schedule D prep
Monthly account statementsDocuments > StatementsMonthly PDF + parsed line itemsCompliance archives, custodial reporting
Linked bank accountsSettings > Linked accountsInstitution name, masked account number, statusSource-of-funds verification, AML controls

Typical integration scenarios

1. Net-worth dashboards for RIAs

Independent RIAs and family-office aggregators (Kubera, Monarch, Copilot Money) can rarely show Fundrise positions natively. We deliver a read-only client that pulls the holdings table, the latest NAV per fund and the trailing-12-month distribution stream, then pushes them into the aggregator's "manual asset" or custom-feed API. Mapping covers the Innovation Fund's transition to VCX so the same holding shows continuous history across the private-to-public listing event.

2. Tax-season automation

Each January through April we fetch the latest 1099-DIV, 1099-B and K-1 packets from the Documents area, parse box-level fields, and post them to TaxBit, Form8949.com or a custom S3 + Snowflake archive. The pipeline detects when a corrected 1099 is reissued (a regular event for REITs) and triggers a downstream re-run of Schedule D generation.

3. Cash-flow forecasting for treasury

For investors who use Fundrise as a yield sleeve alongside money-market funds, we expose a webhook that fires on every distribution event — fund, settlement date, gross amount, reinvestment toggle. Treasury teams plug it into ERP cash-flow models so quarterly real-estate income and Income Real Estate Fund coupon payments hit the same forecast that already covers T-bill ladders.

4. Compliance & AML monitoring

For regulated wealth platforms that introduce clients to Fundrise via Fundrise Connect, we wire the partner Offerings and Place Investment endpoints together with the linked-bank-account roster so every contribution can be tagged with source-of-funds metadata, satisfying SEC Regulation S-P and FinCEN CIP recordkeeping without manual exports.

5. Innovation Fund (VCX) price reconciliation

Since Fundrise listed the Innovation Fund on the NYSE under ticker VCX in March 2026, holdings can drift between the in-app NAV view and the live market price. The integration cross-references the in-app share count with an exchange feed (e.g. IEX, Polygon) so dashboards always show both fair-market value and the manager-reported NAV side by side.

Technical implementation

Authenticated session bootstrap

// Establish a user-authorised session against the Fundrise client API.
// Two-factor and biometric prompts are handled by the host app delegate.
POST /api/v1/fundrise/auth/login
Content-Type: application/json

{
  "email": "investor@example.com",
  "password": "<USER_PROVIDED>",
  "device_id": "ios-3F2A...",
  "totp_code": "482910"
}

200 OK
{
  "session_token": "sess_8f2c...",
  "expires_at": "2026-05-03T18:42:00Z",
  "investor_id": "inv_71fa9c",
  "plan": "Premium"
}

Portfolio & distribution snapshot

GET /api/v1/fundrise/portfolio?investor_id=inv_71fa9c
Authorization: Bearer <SESSION_TOKEN>

200 OK
{
  "as_of": "2026-05-03",
  "total_value_usd": 48217.62,
  "holdings": [
    {"fund":"flagship-real-estate","shares":124.51,"nav":11.07,"value":1378.64},
    {"fund":"income-real-estate","shares":98.20,"nav":10.42,"value":1023.21},
    {"fund":"innovation-fund-vcx","shares":612.00,"nav":18.94,"market_price":19.47,"value":11591.28},
    {"fund":"opportunistic-credit","shares":50.00,"nav":10.00,"value":500.00}
  ],
  "ttm_distributions_usd": 1842.07
}

Statement export & webhook

// Pull a parsed monthly statement
GET /api/v1/fundrise/statements/2026-04
Authorization: Bearer <SESSION_TOKEN>
Accept: application/json, application/pdf

// Subscribe to distribution events
POST /api/v1/fundrise/webhooks
{
  "url": "https://erp.example.com/hooks/fundrise",
  "events": ["distribution.paid","redemption.queued","tax.document.ready"],
  "secret": "whsec_..."
}

// Sample event payload
{
  "event":"distribution.paid",
  "occurred_at":"2026-04-30T14:00:00Z",
  "fund":"income-real-estate",
  "amount_usd":42.18,
  "reinvested": true
}

Compliance & privacy

Fundrise Advisors, LLC is registered with the U.S. Securities and Exchange Commission under the Investment Advisers Act of 1940, and its eREITs and eFunds are sold under SEC Regulation A+. Any integration that handles investor records must therefore respect SEC Regulation S-P (the Safeguards Rule) for non-public personal information, plus the FTC Safeguards Rule and applicable state laws such as the CCPA / CPRA for California residents.

Our deliverables ship with a written data-handling brief: which fields are stored, retention windows aligned to IRS recordkeeping (seven years for tax documents), encryption at rest with AES-256, TLS 1.3 in transit, and consent records for every authenticated session. We never reuse client credentials beyond the contracted scope.

Engagement modules

  • Authenticated session bootstrap, MFA and device fingerprinting
  • Holdings, NAV history, distribution and redemption sync
  • Statement & tax-document fetch with structured JSON output
  • Fundrise Connect partner-flow wiring (Offerings, Place Investment)
  • Innovation Fund VCX market-price reconciliation against NAV
  • Webhook fan-out for distribution and tax-document events

Data flow / architecture

A typical deployment looks like this: Fundrise mobile / web clientOpenFinance Lab ingestion gateway (handles authenticated sessions, rate-limit budget, retry and document parsing) → Normalised storage (Postgres for tabular holdings/distributions, S3 for PDF originals) → Outbound API or webhook (REST + signed webhooks for downstream ERPs, dashboards, or tax engines).

  • Ingestion respects Fundrise Connect's per-client and per-method rate limits to avoid denial-of-service triggers.
  • Document parsing runs in a separate worker pool, so 1099 season spikes do not block real-time portfolio reads.
  • Webhook delivery uses HMAC-SHA256 signatures and exponential-backoff retry, so downstream ERPs never miss a distribution event.

Market positioning & user profile

Fundrise's user base is overwhelmingly U.S. retail investors — more than 2 million accounts, with roughly 74,000 of them already inside the Innovation Fund alone — and skews toward 25-to-45-year-old professionals who want exposure to real estate, venture capital and private credit without the $25,000 to $250,000 minimums of traditional alternative funds. The mobile-first product (Android + iOS) is the dominant entry point, with a $10 starting minimum that pulls in first-time alternative investors. Integration buyers are typically RIAs, multi-family-office aggregators, fintech challengers building net-worth dashboards, and CPAs running tax-season automation for high-volume retail clients.

Fundrise app screenshots

Tap any thumbnail to enlarge. These visuals come from the official Google Play listing for Fundrise: Invest in Alts and illustrate the surfaces our integration maps to — portfolio overview, fund detail pages, distributions, and the document area used for statement export.

Fundrise mobile screenshot 1 Fundrise mobile screenshot 2 Fundrise mobile screenshot 3 Fundrise mobile screenshot 4 Fundrise mobile screenshot 5 Fundrise mobile screenshot 6 Fundrise mobile screenshot 7 Fundrise mobile screenshot 8

Similar apps & the alternative-investing integration landscape

Investors rarely keep all of their alternative exposure on a single platform. Teams that integrate Fundrise typically end up wanting unified holdings and statement exports across the broader retail-alts ecosystem. The platforms below frequently appear in the same portfolio aggregation requests we receive.

YieldstreetMulti-asset alternative platform covering real estate, art, private credit and the Prism Fund; users typically want unified distribution exports across Yieldstreet and Fundrise.
RealtyMogulIncome REIT and Growth REIT plus 1031 exchange offerings; integration buyers often need a single cash-flow view that combines RealtyMogul dividends with Fundrise distributions.
Arrived HomesFractional single-family rental shares with quarterly rental income; commonly aggregated next to Fundrise's residential allocation in net-worth dashboards.
GroundfloorShort-term, high-yield real-estate-backed notes from $10; integration requests usually focus on aligning Groundfloor loan repayments with Fundrise Income Real Estate distributions in the same cash ladder.
CrowdStreetAccredited-investor marketplace for individual commercial real estate deals; CPAs handling Fundrise K-1s often handle CrowdStreet K-1s in the same tax-season pipeline.
EquityMultipleDirect commercial real estate offerings for accredited investors with $4.4B+ in project value; appears alongside Fundrise in family-office holdings reports.
StreitwiseIncome-oriented private REIT with an 8%+ dividend track record and a $5,000 minimum; income-focused investors aggregate it next to the Fundrise Income Real Estate Fund.
RoofstockMarketplace for whole single-family rental properties; richer landlord-style data that complements Fundrise's passive REIT exposure in unified property dashboards.
FarmTogetherAccredited-only farmland investing; integration teams that already pull Fundrise data often add FarmTogether to broaden agricultural-asset coverage in the same wealth view.
Ark7Fractional rental shares from $20 with a secondary market; commonly synced together with Fundrise so investors can compare liquidity profiles across two retail-alts platforms.

Deliverables checklist

  • OpenAPI 3.1 specification covering authentication, portfolio, distributions, statements and webhooks
  • Protocol report: session bootstrap, MFA flow, document download tokens, rate-limit behaviour
  • Reference implementation in Python (FastAPI) and Node.js (TypeScript / Fastify)
  • Statement & tax-document parser for 1099-DIV, 1099-B, and K-1 PDFs
  • Postman / Bruno collection plus end-to-end pytest / Vitest suites
  • Compliance brief covering Reg S-P, FTC Safeguards Rule, CCPA / CPRA
  • Operational runbook: token rotation, error taxonomy, retry strategy, alerting hooks

About OpenFinance Lab

We are an independent technical studio focused on protocol analysis and OpenFinance integrations for retail and institutional fintech. Our engineers come from custodians, payment networks, broker-dealers and SEC-registered investment advisers, and we have shipped production integrations against alternative-asset platforms, banking apps, brokerage stacks and crypto exchanges across the U.S., U.K., EU and APAC.

  • Source-code delivery from $300 — runnable API source plus full documentation, paid on satisfaction
  • Pay-per-call hosted API option — no upfront cost, ideal for usage-based pricing
  • Optional ongoing maintenance retainer for protocol drift and tax-form schema updates
  • SOC 2-aligned hosting and NDAs available for regulated buyers

Contact

Send us the target app (Fundrise: Invest in Alts) and the specific data surfaces you need — holdings, distributions, statements, tax docs, Innovation Fund VCX reconciliation, or a custom slice. We respond within one business day with a scope, a delivery window, and a fixed quote.

Contact page

Engagement workflow

  1. Scope confirmation: which Fundrise surfaces (portfolio, distributions, statements, tax forms, Connect partner flows) are in scope, plus output format.
  2. Protocol analysis and API design (2–4 business days)
  3. Build, internal validation against a sandbox or tester account (4–7 business days)
  4. Documentation, sample clients, and pytest / Vitest test suites (1–2 business days)
  5. Typical first usable drop: 7–12 business days. Tax-document parsing or VCX market reconciliation may add 3–6 days.

FAQ

Does Fundrise expose an official API for third parties?

Fundrise operates Fundrise Connect, a partner-facing REST API that issues a partner username and password for HTTP Basic Authentication and exposes Offerings and Place Investment endpoints. Beyond Connect, retail-facing portfolio, distribution and statement data must typically be reached through authorized session flows rather than a public retail API, which is the gap this integration service fills.

What Fundrise data can you actually pull into our backend?

Account holdings across eREITs, the Flagship Real Estate Fund, Income Real Estate Fund (private credit) and the Innovation Fund (VCX), plus dividend and distribution history, contributions, redemption requests, monthly account statements, tax documents (1099-DIV, 1099-B, K-1) and linked-bank ACH transfer records.

How do you handle SEC and investor-data compliance?

All work is done under explicit user authorization or against documented partner endpoints such as Fundrise Connect. We follow the SEC Regulation S-P safeguards rule for non-public personal information, log every access, minimize stored fields to what the integration needs, and align tax-document handling with IRS retention guidance. NDAs and SOC 2-aligned hosting are available on request.

How long does a typical Fundrise integration take to deliver?

A first usable drop covering authenticated session, portfolio snapshot and statement export usually lands in 7 to 12 business days. Adding tax-document parsing, Innovation Fund VCX market-price reconciliation, or webhook-style distribution alerts adds roughly 3 to 6 days each.
📱 Original app overview (appendix)

Fundrise: Invest in Alts is the official mobile client of Fundrise, America's largest direct-to-consumer alternative asset manager. It serves more than 2 million people across a portfolio that has grown past $7 billion in real-estate value alone, and lets retail investors build a diversified position in private real estate, venture capital and private credit from a $10 minimum.

  • Real estate — More than 300 underlying investments including single-family rentals, industrial properties and multifamily apartments delivered through eREITs and the Flagship Real Estate Fund.
  • Venture capital — The Innovation Fund targets mid-to-late-stage private technology companies in AI, modern data infrastructure and machine learning, with reported holdings such as OpenAI, Anthropic and Ramp. The fund listed on the NYSE under ticker VCX in March 2026.
  • Private credit — The Income Real Estate Fund and Opportunistic Credit Fund target high current yields through mezzanine loans, gap financing, preferred equity and short-duration real-estate-backed debt.
  • Diversification & reporting — Investors get fund-level dashboards, acquisition updates, market-data trends and exit notes, plus monthly statements and annual tax documents (1099-DIV, 1099-B and K-1).
  • Security — Bank-level AES encryption, two-factor authentication and biometric access on the mobile app; ACH funding integrates with more than 3,500 banks including Chase, Wells Fargo and Charles Schwab.
  • Regulation — Fundrise Advisors, LLC is registered with the U.S. Securities and Exchange Commission under the Investment Advisers Act of 1940; the eREITs and eFunds are sold under SEC Regulation A+.

Investing in securities involves risk. Fundrise materials are for illustration; this page is a third-party technical integration overview and is not investment advice.

Last updated: 2026-05-03