The same engine behind the app: normalized SEC fundamentals, the EDGAR-Score, filing & 8-K event feeds, and AI research calls — for any US-listed ticker. JSON, key-authenticated, CORS-enabled.
Create a key below, then call any endpoint with a Bearer token. Base path is /api/v1.
curl https://your-domain.com/api/v1/score/AAPL \
-H "Authorization: Bearer ek_live_xxxxxxxx"Every response carries X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset. Exceeding the per-minute burst or monthly quota returns 429 with .
Retry-AfterSign in to create and manage API keys. Your key inherits your account plan.
| Endpoint | Description | Plan |
|---|---|---|
GET/api/v1/search?q= | Ticker/name lookup across the full US universe (~52k). | Free |
GET/api/v1/fundamentals/:ticker | Normalized SEC XBRL fundamentals digest. | Free |
GET/api/v1/score/:ticker | EDGAR-Score — 0–100 quality composite + factors. | Free |
GET/api/v1/filings/:ticker | Recent SEC filings (form, date, link). | Free |
GET/api/v1/events/:ticker | Material events parsed from 8-K filings. | Free |
| GET |
Thin wrappers over the same REST API — use whatever fits your workflow.
pip install edgar-calls
from edgar_calls import Client
c = Client() # EDGARCALLS_API_KEY
c.score("AAPL").score.composite
c.search("apple", as_dataframe=True)Google Sheets: =EDGAR_SCORE("AAPL")
Excel (Power Query): EdgarGet("/api/v1/score/AAPL")
Or build your own from the interactive reference / OpenAPI spec.
SEC EDGAR data is public domain; our derived analytics (EDGAR-Score, fair value, AI calls) are our own — both are yours to use under the plan above. Live market data is third-party licensed and isn't redistributed on Free/Pro: the /quote endpoint is bring-your-own-key (pass your EODHD token via the x-data-key header), or talk to us about a redistribution-licensed Business plan.
Not investment advice. Data may be delayed or incomplete; verify against primary SEC sources.
/api/v1/call/:ticker| AI research call: rating, conviction, thesis, risks, catalysts. |
| Pro |
GET/api/v1/quote/:ticker | Live quote — bring-your-own data key (see licensing). | BYO |