What is a Fato Relevante? Brazil CVM Material Facts Explained

Fato relevante is the Brazilian disclosure category for material information that public companies file with the CVM. When something important enough to move investor decisions happens — a deal, a major contingency, a governance change — the issuer publishes a fato relevante.

If you are building event monitors, compliance checklists, or research agents for B3 companies, this is the document type you want next to quarterly ITR filings — not instead of them.

Why the term matters

Portuguese searchers look for fato relevante. English product copy often says material fact. Same category. On apicvm the filter is:

type=FATO_RELEVANTE

The filing is usually a single PDF. Unlike DFP, ITR, and FRE, section prefixes (GET /v1/document-prefixes) do not apply.

What a fato relevante typically covers

Content varies by event. Common themes:

  • M&A, asset sales, or material contracts
  • Capital structure changes that matter to holders
  • Significant legal, regulatory, or operational developments
  • Other facts the issuer treats as material under CVM rules

It is event-driven, not a fixed quarterly package. That is why pipelines that only poll DFP/ITR miss a large share of “what changed this week.”

Not the same as DFP, ITR, FRE — or Form 8-K

Document Cadence Main job
DFP Annual Standardized financial statements
ITR Quarterly Interim financials (Informações Trimestrais — not income tax)
FRE Annual / updates Company profile, governance, risks (Formulário de Referência)
Fato relevante Event-driven Material facts as they occur

US developers sometimes map fato relevante to Form 8-K. The analogy helps orientation; the taxonomy, language, and filing mechanics are Brazilian — not a literal 8-K clone. For the wider CVM ↔ SEC map, see Brazil EDGAR / CVM vs SEC filings.

How to list fatos relevantes with apicvm

export APICVM_KEY='apicvm_...'
export APICVM_URL='https://apicvm.dev'

curl -H "Authorization: Bearer $APICVM_KEY" \
  "$APICVM_URL/v1/documents?ticker=PETR4&type=FATO_RELEVANTE&year=2024&perPage=20"

Then download with GET /v1/documents/:id/file. Full pagination, filters, and Python examples: List Brazil material facts (fatos relevantes) via API.

Current limitations

  • Coverage depends on the ingested IPE corpus — not every issuer or period may be present.
  • apicvm returns original PDFs; it does not classify the topic of each fato for you.
  • Demo keys may not cover IPE types — use a production key for material-fact pipelines.

Next steps

Ready to integrate?

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