TTEN3 CVM Filings — Documents and API Access
TTEN3 is the ticker for Três Tentos Agroindustrial S.A., a vertically integrated agribusiness company operating in grain origination, inputs distribution, and industrial processing (including biodiesel and ethanol). If you need TTEN3 CVM filings for commodity-exposed equity research or AI-driven due diligence, apicvm provides programmatic access to DFP, ITR, and FRE documents.
Company overview
| Field | Value |
|---|---|
| Name | TRÊS TENTOS AGROINDUSTRIAL S.A. |
| Ticker | TTEN3 (ON — ordinary shares) |
| CNPJ | 94813102000170 |
| Sector | Agricultura (Açúcar, Álcool e Cana) |
| Regulator | CVM (Comissão de Valores Mobiliários) |
Três Tentos is controlled by the Dumoncel family with a concentrated ownership structure. Filings reflect commodity price exposure (soy, corn, wheat), industrial expansion (ethanol from corn), derivative hedging, and significant capex cycles.
Document types available
| Type | Description | Typical use |
|---|---|---|
| DFP | Annual standardized financial statements | Revenue by segment, commodity MTM, audit opinions |
| ITR | Quarterly financial information | Interim margins, inventory levels, debt changes |
| FRE | Formulário de Referência | Ownership structure, risk factors, capex plans, legal proceedings |
Document counts in the current corpus (Hold database, queried 2026-07-17):
| Year | DFP | ITR | FRE |
|---|---|---|---|
| 2025 | — | 33 | 77 |
| 2024 | 12 | 31 | 78 |
2025 DFP may not yet be filed or ingested at query time. Inspect list results for the latest available year.
Resolve TTEN3
export APICVM_KEY='apicvm_...'
export APICVM_URL='https://apicvm.dev'
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/companies/resolve?query=TTEN3&by=ticker"
Expected response fields: id, name, cnpj, sector, tickers[].
List TTEN3 DFP filings (2024)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=TTEN3&type=DFP&year=2024&perPage=20"
DFP footnotes cover segment revenue (Grãos, Indústria, Insumos), commodity fair-value adjustments, derivative MTM, and debt covenants.
List TTEN3 FRE filings (2025)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=TTEN3&type=FRE&year=2025&perPage=50"
FRE is essential for TTEN3 research: shareholder agreements, family control structure, commodity risk factors, capex projections (industrial expansion cycle), and material legal proceedings.
Example: Python workflow
import os, requests
BASE = os.environ["APICVM_URL"]
H = {"Authorization": f"Bearer {os.environ['APICVM_KEY']}"}
company = requests.get(
f"{BASE}/v1/companies/resolve",
params={"query": "TTEN3", "by": "ticker"},
headers=H,
).json()
fre = requests.get(
f"{BASE}/v1/documents",
params={"ticker": "TTEN3", "type": "FRE", "year": 2025, "perPage": 50},
headers=H,
).json()
print(company["name"], "—", len(fre["data"]), "FRE files for 2025")
Research angles for TTEN3
Common analysis themes on TTEN3 filings:
- Commodity exposure — fair-value adjustments, derivative MTM, segment revenue drivers (DFP footnotes)
- Industrial expansion — capex plans, ethanol from corn project, financing sources (FRE)
- Ownership and control — family control group (~75%), shareholder agreements (FRE)
- Leverage cycle — debt growth vs EBITDA, short-term maturities, covenant headroom (DFP + ITR)
- Risk factors — climate, commodity prices, RenovaBio/biodiesel regulation (FRE)
Agribusiness issuers like TTEN3 often show volatile reported earnings due to commodity mark-to-market — footnote analysis is critical to separate operational performance from accounting noise.
Current limitations
- Document availability depends on the apicvm ingestion pipeline; counts above reflect the current corpus.
- Extraction is asynchronous via callbacks; there is no synchronous text endpoint.
perPagemax is 50; paginate if needed.
Next steps
Ready to integrate?
Get an API key and start querying Brazilian CVM filings programmatically.