Brazil CVM Filings for Sovereign Wealth Funds

Brazil filings sovereign wealth fund teams covering B3 issuers need durable document IDs for internal memos. apicvm delivers DFP/ITR/FRE over HTTP. It is not a portfolio system, FX desk feed, or holdings master.

The persona

  • Country analysts refreshing annual DFP packs
  • Risk staff pulling FRE risk language into knowledge bases
  • Platform teams automating multi-issuer archives

The problem

Task Typical filing
Annual statements DFP
Quarterly updates ITR
Governance / risk narrative FRE

Manual portal downloads do not scale across an EM equity sleeve.

Solution flow

Watchlist → resolve → list DFP/ITR/FRE → download → cite UUID
curl -H "Authorization: Bearer $APICVM_KEY" \
  "$APICVM_URL/v1/documents?ticker=PETR4&type=DFP&year=2024&perPage=20"

Related: Asset manager, Pension fund.

Example: SWF coverage pull

import os, requests

BASE = os.environ["APICVM_URL"]
H = {"Authorization": f"Bearer {os.environ['APICVM_KEY']}"}
tickers = ["PETR4", "VALE3", "NEOE3", "RDOR3"]

for t in tickers:
    docs = requests.get(
        f"{BASE}/v1/documents",
        headers=H,
        params={"ticker": t, "type": "DFP", "year": 2024, "perPage": 20},
    ).json()["data"]
    print(t, [d["id"] for d in docs[:2]])

Current limitations

  • Not a source for SWF own holdings, FX hedges, or board packs
  • Corpus coverage varies; empty list ≠ "never filed"
  • No real-time material-fact push in v1 MVP scope

Next steps

Ready to integrate?

Get an API key and start querying Brazilian CVM filings programmatically.