SUZB3 CVM Filings — Documents and API Access

SUZB3 is the ON ticker for SUZANO S.A., a major Brazilian pulp and paper producer. Pull SUZB3 CVM filings through apicvm: resolve, list DFP/ITR/FRE, download PDFs, or extract page-level text.

Company overview

Field Value
Name SUZANO S.A.
Ticker SUZB3 (ON)
CNPJ 16404287000155
Sector Papel e Celulose
Regulator CVM

Document types available

Type Description
DFP Annual standardized financial statements
ITR Quarterly financial information
FRE Formulário de Referência

Document counts in the current corpus (queried 2026-07-29):

Year DFP ITR FRE
2025 27 3
2024 12 27 77

A dash means that type/year was not present in the corpus at query time.

Resolve SUZB3

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

curl -H "Authorization: Bearer $APICVM_KEY" \
  "$APICVM_URL/v1/companies/resolve?query=SUZB3&by=ticker"

List SUZB3 DFP filings (2024)

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

Python: download first DFP file metadata then file

import os, requests

BASE = os.environ["APICVM_URL"]
H = {"Authorization": f"Bearer {os.environ['APICVM_KEY']}"}

docs = requests.get(
    f"{BASE}/v1/documents",
    headers=H,
    params={"ticker": "SUZB3", "type": "DFP", "year": 2024, "perPage": 5},
).json()["data"]

doc_id = docs[0]["id"]
file_resp = requests.get(f"{BASE}/v1/documents/{doc_id}/file", headers=H)
file_resp.raise_for_status()
open(f"suzb3-dfp-{doc_id}.pdf", "wb").write(file_resp.content)
print("saved", doc_id, "bytes", len(file_resp.content))

Current limitations

  • Counts are a corpus snapshot (2026-07-29).
  • No DFP 2025 documents in the corpus at query time.
  • FRE 2025 count (3) reflects partial ingestion at snapshot time, not a complete filing set.
  • Not a substitute for live CVM portal monitoring of every document category.

Next steps

Ready to integrate?

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