Anjos do Brasil Angel Network — Investee Portfolio Scraper
BUSINESSLEAD GENERATION
Anjos do Brasil Angel Network — Investee Portfolio Scraper
Extract the public portfolio of startups that have received angel investment through Anjos do Brasil, Brazil's largest angel-investor network. Returns all ~180 publicly listed investee companies with their sector, state, and profile link.
What It Does
Scrapes the startups-investidas post registry from Anjos do Brasil's public WordPress REST API. For each investee startup, it resolves sector (solution type) and Brazilian state taxonomy terms to human-readable names.
Data Fields
| Field | Description |
|---|---|
id |
WP post ID |
title / company_name |
Startup name |
permalink |
Profile URL on anjosdobrasil.net |
sector |
Industry vertical (e.g. "Edtech", "ConsumerTech") |
state |
Brazilian state(s) where the startup operates |
alert_date |
Date the record was published (YYYY-MM-DD) |
status |
Always active for published records |
record_type |
Always investee |
scrapedAt |
ISO-8601 scrape timestamp |
Note: Fields like
stage,ticket_size_brl,founder_name, andfounder_emailare not exposed in the public registry and will benull.
Use Cases
- VC / angel investor research — track which startups the Brazilian angel layer has validated
- LATAM deal-flow intelligence — monitor new portfolio additions as a leading indicator
- Competitive benchmarking — understand which sectors and states dominate the Anjos do Brasil portfolio
- CRM enrichment — cross-reference your pipeline against the Anjos do Brasil investee list
Input
| Parameter | Type | Default | Description |
|---|---|---|---|
maxItems |
integer | 10 | Maximum number of investee records to return (0 = unlimited, ~182 records) |
Output
Dataset with one row per investee startup. Example record:
{
"record_type": "investee",
"id": 23881,
"title": "Labirintar",
"company_name": "Labirintar",
"permalink": "https://anjosdobrasil.net/startups-investidas/labirintar/",
"description": null,
"sector": "Edtech",
"state": "SP",
"stage": null,
"ticket_size_brl": null,
"alert_date": "2026-04-27",
"status": "active",
"founder_name": null,
"founder_email": null,
"founder_linkedin": null,
"website_url": "https://anjosdobrasil.net/startups-investidas/labirintar/",
"scrapedAt": "2026-06-10T12:00:00.000Z"
}
Technical Notes
- Uses the public WordPress REST API (
/wp-json/wp/v2/startups-investidas) with offset pagination - Resolves
solucoes(sector) andestado(state) taxonomy term IDs to names in a single pre-crawl batch fetch - No authentication or proxy required — the registry is fully public
- Typical full run: ~182 records in under 30 seconds