Economatica vs Brazil CVM Filings API
Economatica vs CVM filings API comparisons should separate a Brazil research desktop from a developer filings API. Economatica is widely used for screening, fundamentals, and desktop research on Brazilian markets. apicvm exposes resolve → list → download → extract for CVM DFP/ITR/FRE over HTTP. Complementary — not a replacement.
Side-by-side
| Capability | Economatica | apicvm |
|---|---|---|
| Desktop screens & Brazil fundamentals | Yes | No |
| Charting / analyst workstation workflows | Yes | No |
| HTTP download of CVM section PDFs by document ID | Not the product shape | Yes |
| Self-serve API key for your backend | Enterprise / product-dependent | Yes (/signup) |
| Webhook page-level text extraction | Not the product shape | Yes (Pro) |
Developer shape
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": "HYPE3", "type": "DFP", "year": 2024, "perPage": 20},
).json()
Keep Economatica (or any terminal) for screening and models; call apicvm when code must fetch the Brazilian filing file.
When apicvm is the better fit
- You are building an app, agent, or internal API that needs CVM PDFs by ticker
- You want document UUIDs for caching and audit
- You need async page markdown via callback
When Economatica is the better fit
- Desktop research and Brazil-specific screening
- Teams already standardized on Economatica for fundamentals
- Workflows that do not need a self-serve HTTP filings API
Integration sketch
Many desks keep Economatica for idea generation, then call apicvm from a job when a ticker enters a watchlist:
Economatica screen → ticker list → apicvm /v1/documents → PDF archive / agent extract
That split avoids forcing research desks off tools they already know. Same complementary stance as Bloomberg and FactSet.
Current limitations
- Do not market apicvm as “Economatica for developers” or as a replacement.
- Claims about Economatica modules vary by contract — speak only to apicvm’s contract.
- apicvm corpus ≠ every filing on the CVM portal.
Next steps
Ready to integrate?
Get an API key and start querying Brazilian CVM filings programmatically.