RADL3 CVM Filings — Documents and API Access
RADL3 is the ticker for Raia Drogasil S.A. (RD Saúde), Brazil's largest pharmacy retail chain by store count and a major B3-listed consumer company. If you need RADL3 CVM filings for equity research, compliance review, or AI agents, apicvm lets you resolve the company, list regulatory documents by type and year, and download originals or extract page-level text.
Company overview
| Field | Value |
|---|---|
| Name | RAIA DROGASIL S.A. |
| Ticker | RADL3 (ON — ordinary shares) |
| CNPJ | 61585865000151 |
| Sector | Comércio (Atacado e Varejo) |
| Regulator | CVM (Comissão de Valores Mobiliários) |
RD Saúde operates thousands of pharmacies across Brazil with growing digital sales. Regulatory filings cover retail expansion, pharmaceutical pricing regulation (CMED/ANVISA), debt from store leases (IFRS 16), and tax contingencies typical of large retail groups.
Document types available
| Type | Description | Typical use |
|---|---|---|
| DFP | Annual standardized financial statements | Full-year revenue, margins, audit opinions |
| ITR | Quarterly financial information | Interim earnings, debt updates, covenant checks |
| FRE | Formulário de Referência | Governance, contingencies, ESG, market strategy |
Document counts in the current corpus (Hold database, queried 2026-07-17):
| Year | DFP | ITR | FRE |
|---|---|---|---|
| 2025 | 11 | 33 | 78 |
| 2024 | 13 | 35 | 79 |
Counts include all files filed under each type for the year. Inspect list results to pick the right document by name and dateRef.
Resolve RADL3
export APICVM_KEY='apicvm_...'
export APICVM_URL='https://apicvm.dev'
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/companies/resolve?query=RADL3&by=ticker"
Expected response fields: id, name, cnpj, sector, tickers[].
List RADL3 ITR filings (2025)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=RADL3&type=ITR&year=2025&perPage=50"
Use ITR for quarterly revenue momentum, digital sales mix, and updated debt/covenant disclosures between annual DFP releases.
List RADL3 FRE filings (2025)
curl -H "Authorization: Bearer $APICVM_KEY" \
"$APICVM_URL/v1/documents?ticker=RADL3&type=FRE&year=2025&perPage=50"
FRE is the primary source for legal contingencies (tax, labor, civil), ESG/sustainability programs, and competitive/regulatory risk factors for the pharmacy sector.
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": "RADL3", "by": "ticker"},
headers=H,
).json()
docs = requests.get(
f"{BASE}/v1/documents",
params={"ticker": "RADL3", "type": "DFP", "year": 2024, "perPage": 20},
headers=H,
).json()
print(company["name"], "—", len(docs["data"]), "DFP files for 2024")
Research angles for RADL3
Common analysis themes on RADL3 filings:
- Retail expansion — store openings, digital penetration, revenue per store (FRE + ITR)
- Margin dynamics — generic vs branded mix, GLP-1 impact, inventory losses (DFP footnotes)
- Leverage and covenants — debentures, IFRS 16 lease liabilities, net debt/EBITDA limits (DFP + ITR)
- Tax contingencies — ICMS, PIS/COFINS cases with provision adequacy (FRE)
- ESG and compliance — sustainability reporting, integrity program maturity (FRE)
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.