RENT3 CVM Filings — Documents and API Access
RENT3 is the ON ticker for Localiza Rent a Car S.A., a leading Brazilian mobility and car-rental company. Pull RENT3 CVM filings through apicvm: resolve, list DFP/ITR/FRE, download PDFs, or extract page-level text.
Company overview
| Field | Value |
|---|---|
| Name | LOCALIZA RENT A CAR SA |
| Ticker | RENT3 (ON) |
| CNPJ | 16670085000155 |
| Sector | Serviços Transporte e Logística |
| 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-28):
| Year | DFP | ITR | FRE |
|---|---|---|---|
| 2025 | — | 36 | 78 |
| 2024 | 14 | 37 | 78 |
A dash means that type/year was not present in the corpus at query time.
Resolve RENT3
export APICVM_KEY='apicvm_...'
export APICVM_URL='https://apicvm.dev'
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/companies/resolve?query=RENT3&by=ticker"
List RENT3 DFP filings (2024)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=RENT3&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": "RENT3", "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"rent3-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-28).
- 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.