SEC EDGAR for Developers: The Free Fundamentals API Hiding in Plain Sight
The SEC provides a free JSON API for accessing public company filings, which can be useful for developers and investors. This API allows users to retrieve detailed financial data, including revenue and earnings, directly from the source. However, users must navigate some challenges, such as CIK lookups and concept normalization, to effectively utilize the data.
- ▪The SEC's EDGAR API offers structured access to filings from all public US companies.
- ▪Key endpoints include submissions, company facts, and specific concepts like revenues.
- ▪Users need to manage CIK lookups and handle variations in XBRL concepts across different companies.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3926669) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } pickuma Posted on May 19 • Originally published at pickuma.com SEC EDGAR for Developers: The Free Fundamentals API Hiding in Plain Sight #investing #finance #beginners #productivity You finished the comparison shopping between Polygon and Alpha Vantage, maybe even signed up for a free tier of each. Now you want to pull fundamentals — revenue, earnings, free cash flow — for your screener. Don't reach for the paid tier just yet.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).