GGBR4 CVM Filings — Documents and API Access

GGBR4 is the PN ticker for Gerdau S.A., a Brazilian steel producer. Pull GGBR4 CVM filings through apicvm: resolve, list DFP/ITR/FRE, download PDFs, or extract page-level text.

Company overview

Field Value
Name Gerdau S.A.
Ticker GGBR4 (PN)
CNPJ 33611500000119
Sector Steel / metallurgy
Regulator CVM

Confirm live metadata with resolve — tickers and registration fields can change.

Document types available

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

Corpus coverage varies by year. Query the API for the current inventory instead of assuming portal parity.

Resolve GGBR4

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

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

List GGBR4 DFP filings (2024)

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

Python: FRE sections mentioning risk

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": "GGBR4", "type": "FRE", "year": 2024, "name": "Risco", "perPage": 20},
).json()

for d in docs["data"]:
    print(d["id"], d["name"])

Download a filing

curl -OJ -H "Authorization: Bearer $APICVM_KEY" \
  "$APICVM_URL/v1/documents/<document-id>/file"

Inventory check

for type in DFP ITR FRE; do
  echo "== $type =="
  curl -sS -H "Authorization: Bearer $APICVM_KEY" \
    "$APICVM_URL/v1/documents?ticker=GGBR4&type=$type&year=2024&perPage=50" \
    | python3 -c "import sys,json; print(len(json.load(sys.stdin).get('data') or []))"
done

Use the live count in your own docs — do not hard-code snapshot tables that go stale.

Current limitations

  • Results reflect the ingested corpus, not a live CVM portal scrape.
  • Prefer resolve before hard-coding CNPJ in production jobs.
  • Extraction is async and credit-based on Pro.

Next steps

Ready to integrate?

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