Passive Beneficial Ownership Report (Schedule 13G) SEC Filing API
Schedule 13G is the short-form beneficial ownership report filed by passive investors — qualified institutions and exempt investors — who cross 5% of a class of registered voting equity without intent to influence control of the issuer. It is the passive counterpart to Schedule 13D and identifies large index funds, asset managers, and long-only holders. Together, 13G passive stakes, 13D activist stakes, and 13F quarterly holdings give a complete picture of institutional ownership. The SEC Filing API returns 13G filing URLs and dates for any public company by ticker.
From 3,289 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 402ms | 450ms | 496ms | 899ms | 1120ms |
Didn't find what you were looking for? Suggest an improvement
/v1/sec GET
https://api.api-ninjas.com/v1/sec
Returns a list of 13G SEC filings (including the submission URL) for the given company. Set filing=13G to search for 13G filings.
Parameters
tickerrequiredTicker symbol of the company to search (e.g.
AAPL).filingrequiredSEC filing form type. Use
13Gto search for 13G filings. See the full SEC API documentation for the complete list of supported form types.startoptional premium onlyStart date to search. Must be in
YYYY-MM-DDformat (e.g.2023-04-01).endoptional premium onlyEnd date to search. Must be in
YYYY-MM-DDformat (e.g.2023-04-01).limitoptional premium onlyNumber of results to return from 1 to 100. By default, up to 2 results are returned.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.
tickerTicker symbol of the company.
filing_dateDate of the SEC filing in
YYYY-MM-DDformat.filing_urlURL of the SEC filing.
form_typeType of SEC filing (e.g.
13G).
Sample Request Live Demo!
Try this API endpoint with all available parameters in our API playground
https://api.api-ninjas.com/v1/sec?ticker=AAPL&filing=13GHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/sec?ticker=AAPL&filing=13G" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using any HTTP request library and following the documentation above.