LREN3 CVM Filings — Documents and API Access

LREN3 is the ON ticker for LOJAS RENNER SA, a major Brazilian apparel retailer. Pull LREN3 CVM filings through apicvm: resolve, list DFP/ITR/FRE, download PDFs, or extract page-level text.

Company overview

Field Value
Name LOJAS RENNER SA
Ticker LREN3 (ON)
CNPJ 92754738000162
Sector Comércio (Atacado e Varejo)
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-30):

Year DFP ITR FRE
2025 31 78
2024 14 30 78

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

Resolve LREN3

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

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

List LREN3 FRE filings (2024)

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

Python: quarterly ITR catalog

import os, requests

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

itr = requests.get(
    f"{BASE}/v1/documents",
    headers=H,
    params={"ticker": "LREN3", "type": "ITR", "year": 2025, "perPage": 50},
).json()["data"]

for d in itr[:10]:
    print(d["dateRef"], d["name"], d["id"])

Download a filing

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

Retail ESG / governance screens: ESG screening use case. Related consumer name: RENT3.

Current limitations

  • Counts reflect the ingested corpus, not a live CVM portal scrape.
  • FRE section filenames vary — use name= filters carefully.
  • Extraction is async and credit-based on Pro.

Next steps

Ready to integrate?

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