OrbTop

Broota Chile Equity Crowdfunding Campaigns Scraper

BUSINESSLEAD GENERATION

Broota Chile Equity Crowdfunding Campaigns Scraper

Extract structured data from Broota, Chile's largest CMF-regulated equity crowdfunding platform. Collect active and historical campaign data including raise targets, amounts raised, investor counts, sectors, and team information — all in one clean JSON dataset.

What data does this scraper return?

Each record represents one equity crowdfunding campaign on Broota:

Field Description
campaign_id Unique campaign slug identifier
company_name Company name
campaign_slug URL slug for the campaign
profile_url Full campaign URL on Broota
description Short company description
target_raise_clp Fundraising target in CLP (Chilean pesos)
raised_clp Amount raised to date in CLP
pct_funded Percentage of target achieved (0–100)
investor_count Number of investors
round_type Investment type (e.g. SAFE, Equity)
sector Industry sector
country Country of the company
logo_url Company logo image URL
cover_url Campaign cover image URL
team JSON-encoded array of team members with name and role
status Campaign status: activa, cerrada, or fondeada
scrapedAt Scrape timestamp (ISO 8601)

Use cases

  • LATAM startup market research — track Chilean equity crowdfunding trends and deal flow over time
  • Fintech competitive intelligence — monitor campaign structures, raise sizes, and sector distribution
  • Investment screening — filter campaigns by sector, funding progress, and investor count
  • Academic research — study CMF-regulated retail crowdfunding outcomes in emerging markets
  • Portfolio tracking — monitor Broota's full deal history including closed and funded campaigns

How to use

Inputs

Input Type Default Description
maxItems integer 10 Maximum number of campaigns to return
includeHistorical boolean true Include closed and funded historical campaigns (86+ records)

Example: Active campaigns only

{
  "maxItems": 10,
  "includeHistorical": false
}

Example: Full dataset (active + historical)

{
  "maxItems": 100,
  "includeHistorical": true
}

Sample output

{
  "campaign_id": "bikfy",
  "company_name": "BIKFY",
  "campaign_slug": "bikfy",
  "profile_url": "https://inversion.broota.com/campaign/bikfy",
  "description": "Construimos la infraestructura digital que formaliza el mercado de bicicletas y activa nuevos servicios para toda la industria",
  "target_raise_clp": 500000000,
  "raised_clp": 125000000,
  "pct_funded": 25.0,
  "investor_count": 48,
  "round_type": "SAFE",
  "sector": "Tecnología",
  "country": "Chile",
  "logo_url": "https://brootaapiprd.s3.amazonaws.com/images/solicitud/logo/bikfy.png",
  "cover_url": "https://brootaapiprd.s3.amazonaws.com/images/solicitud/portada/bikfy.png",
  "team": "[{\"name\":\"Joaquín Araya\",\"role\":\"CTO\"},{\"name\":\"Augusto Errázuriz\",\"role\":\"CEO\"}]",
  "status": "activa",
  "scrapedAt": "2026-06-11T05:00:00.000Z"
}

About Broota

Broota is Chile's leading equity crowdfunding marketplace, regulated by the CMF (Comisión para el Mercado Financiero). It connects Chilean startups with retail investors and has facilitated campaigns across sectors including technology, food and beverage, fintech, sustainability, and more. The platform publishes all active and historical campaigns publicly, making it a key data source for LATAM startup ecosystem research.

Notes

  • Active campaigns: Only campaigns currently open for investment appear on the active rounds page. The number of active campaigns varies (typically 1–5 at any time).
  • Historical campaigns: 80+ closed and funded campaigns are available via includeHistorical: true.
  • Financial data (share price, minimum investment, start/end dates) is only available inside Broota's authenticated app — this scraper captures all data available on public campaign pages.
  • Rate limits: No documented rate limits. The scraper uses conservative concurrency to respect the platform.