Brazil CVM Filings for Corporate Development
Corp-dev teams tracking Brazilian listed peers need repeatable Brazil filings corporate development packs. apicvm provides resolve → list → download for DFP/ITR/FRE. It is not a deal CRM or confidential VDR.
The persona
- Corporate development analysts at Brazilian and global strategics
- Competitive intelligence partners supporting M&A pipelines
- FP&A teams attaching primary filings to IC decks
The problem
| Need | Filing |
|---|---|
| Peer financials | DFP / ITR |
| Risk / strategy narrative | FRE |
| Watchlist refresh | multi-ticker list |
Emailing portal ZIPs creates version chaos before every IC.
Solution flow
Peer list → /v1/companies/resolve → /v1/documents → object storage → IC appendix
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=RAIL3&type=DFP&year=2024&perPage=20"
Related: M&A research, Competitor monitoring.
Example: weekly peer ITR job
import os, requests
BASE = os.environ["APICVM_URL"]
H = {"Authorization": f"Bearer {os.environ['APICVM_KEY']}"}
peers = ["RAIL3", "CCRO3", "STBP3"]
for t in peers:
r = requests.get(
f"{BASE}/v1/documents",
headers=H,
params={"ticker": t, "type": "ITR", "year": 2024, "perPage": 50},
)
r.raise_for_status()
print(t, [d["id"] for d in r.json()["data"][:5]])
Current limitations
- No private target financials
- No IPE / material-fact stream in MVP claims set
- Inventory depends on ingestion lag
Next steps
Ready to integrate?
Get an API key and start querying Brazilian CVM filings programmatically.