ABEV3 CVM Filings — Documents and API Access
ABEV3 is the ON ticker for Ambev S.A., one of Brazil’s largest beverage companies. If you need ABEV3 CVM filings for research, models, or agents, apicvm lets you resolve the issuer, list DFP/ITR/FRE by year, and download or extract documents.
Company overview
| Field | Value |
|---|---|
| Name | AMBEV S.A. |
| Ticker | ABEV3 (ON) |
| CNPJ | 07526557000100 |
| Sector | Bebidas e Fumo |
| 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 | 11 | 30 | 78 |
| 2024 | 11 | 30 | 80 |
Counts include all files under each type for the year. Inspect name to pick the PDF you need.
Resolve ABEV3
export APICVM_KEY='apicvm_...'
export APICVM_URL='https://apicvm.dev'
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/companies/resolve?query=ABEV3&by=ticker"
List ABEV3 DFP filings (2024)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=ABEV3&type=DFP&year=2024&perPage=20"
Python: list DFP, ITR, FRE
import os, requests
BASE = os.environ["APICVM_URL"]
H = {"Authorization": f"Bearer {os.environ['APICVM_KEY']}"}
for doc_type in ("DFP", "ITR", "FRE"):
r = requests.get(
f"{BASE}/v1/documents",
headers=H,
params={"ticker": "ABEV3", "type": doc_type, "year": 2024, "perPage": 10},
)
r.raise_for_status()
print(doc_type, len(r.json()["data"]))
Current limitations
- Counts reflect the ingested corpus, not a live CVM portal inventory.
- IPE / material facts are outside MVP scope.
Next steps
Ready to integrate?
Get an API key and start querying Brazilian CVM filings programmatically.