OrbTop

Kaszek Ventures LATAM Portfolio Companies Scraper

BUSINESSLEAD GENERATION

Kaszek Ventures LATAM Portfolio Companies Scraper

Scrape the complete Kaszek Ventures portfolio — LATAM's leading venture capital firm. Extracts structured data from each portfolio company's public profile page including company name, tagline, description, founders, location, website, LinkedIn, sector, and investment status.

What it does

Kaszek is the highest-signal LATAM-native VC fund, backing marquee companies like Bitso, Nubank, Kavak, Cornershop, and 99minutos. This actor crawls their public portfolio directory and returns one structured record per company.

Two-stage crawl:

  1. Index page (kaszek.com/companies/) — discovers ~120 portfolio company links with sector and status from CSS class names.
  2. Detail pages (kaszek.com/company/<slug>/) — extracts full company data: tagline, description, founders, location, website, LinkedIn, logo, and investment info.

Output fields

Field Type Description
company_name string Company name
company_slug string URL slug (e.g. "bitso")
profile_url string Kaszek profile page URL
tagline string Hero headline from the company detail page
description string Company description paragraph
founders string Comma-separated founder names
location_text string Location sentence from the detail page
website_url string External company homepage URL
logo_url string Company logo image URL
sector_tag string Primary sector (e.g. fintech, healthtech, ecommerce)
investment_year integer Year the company was founded
kaszek_fund_stage string Investment status (active or exit)
status string "active" or "exited"
linkedin_url string LinkedIn company page URL
location_lat number null — not present in page HTML
location_lng number null — not present in page HTML

Usage

Set Max Items to control how many companies to extract. The full portfolio is approximately 120 companies (some entries without detail pages are skipped automatically).

Sample output

{
  "company_name": "Alice",
  "company_slug": "alice",
  "profile_url": "https://www.kaszek.com/company/alice/",
  "tagline": "Health tech that makes people's lives healthier through value-based healthcare",
  "description": "Alice is Brazil's first primary care-driven health insurance...",
  "founders": "Andre Florence Carneiro, Guilherme Teixeira Azevedo, Matheus Hermsdorff Moraes",
  "location_text": "Alice is headquartered in Sao Paulo and operates in Brazil.",
  "website_url": "https://www.alice.com.br",
  "logo_url": "https://www.kaszek.com/wp-content/uploads/2021/02/Alice-Logo-preto-2.png",
  "sector_tag": "healthtech",
  "investment_year": 2019,
  "kaszek_fund_stage": "active",
  "status": "active",
  "linkedin_url": "https://www.linkedin.com/company/alice/"
}

Notes

  • No proxy required — Kaszek's site is a public WordPress install with no anti-bot protection.
  • Runs at 5 concurrent requests.
  • Companies marked "no-details" on the index page are skipped (no profile page exists for them).
  • location_lat and location_lng are always null — the site uses an SVG map illustration, not embedded coordinates.