Docs / API reference
GET /v1/activist/{identifier}
Schedule 13D and 13G filings — the disclosure anyone crossing 5% of a company's voting stock must make. Parsed from the SEC's structured 13D/G XML: issuer, CUSIP, the reporting person(s), and the exact percent of class.
13D vs 13G. A 13D signals possible activist intent (board pushes, a
sale, a strategy change) and carries the Item 4 purpose statement. A 13G is a passive large holder
(index funds, long-only managers). A
/A suffix is an amendment. If you watch one, watch new 13Ds.Parameters
| Param | In | Values |
|---|---|---|
identifier | path | latest (market-wide feed) or a company ticker (stakes indexed on that company) |
activist_only | query | for latest: true keeps only 13D (activist-intent) filings |
min_percent | query | for latest: minimum percent of class (0–100) |
limit | query | 1–100 (default 40) |
Request
curl "https://api.edgrapi.com/v1/activist/latest?activist_only=true" -H "X-API-Key: edgr_..."
curl "https://api.edgrapi.com/v1/activist/AAPL" -H "X-API-Key: edgr_..."
Response
{
"scope": "market-wide Schedule 13D/13G filings (>5% ownership)",
"activist_only": false, "count": 40,
"filings": [
{ "issuer": "ACME CORP", "issuer_cik": "0000012345", "cusip": "000000000",
"form": "SC 13D", "event_date": "2025-08-18", "top_percent": 9.8,
"filers": ["Starboard Value LP"],
"filed_url": "https://www.sec.gov/Archives/edgar/data/12345/.../primary_doc.xml" }
],
"source": "SEC EDGAR Schedule 13D/13G (structured filings)"
}