NewConnect Claude, Cursor, ChatGPT, and other AI agents to API Ninjas via our MCP server
SEC API

Current Report (8-K) SEC Filing API

Form 8-K is the current report that U.S. public companies must file to disclose material events to shareholders between regularly scheduled reports. Triggering events include earnings releases, executive changes, acquisitions, bankruptcies, auditor changes, and Reg FD disclosures. 8-K filings are generally due within four business days of the triggering event. Because they capture market-moving news in near-real-time, 8-Ks are the most-watched SEC filing type by traders and event-driven investors. The SEC Filing API returns 8-K filing URLs and dates for any public company by ticker.

(4.7)

From 3,289 users

600+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
319ms343ms363ms723ms1251ms

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 8-K SEC filings (including the submission URL) for the given company. Set filing=8-K to search for 8-K filings.

Parameters

  • ticker  required

    Ticker symbol of the company to search (e.g. AAPL).

  • filing  required

    SEC filing form type. Use 8-K to search for 8-K filings. See the full SEC API documentation for the complete list of supported form types.

  • start  optional premium only

    Start date to search. Must be in YYYY-MM-DD format (e.g. 2023-04-01).

  • end  optional premium only

    End date to search. Must be in YYYY-MM-DD format (e.g. 2023-04-01).

  • limit  optional premium only

    Number of results to return from 1 to 100. By default, up to 2 results are returned.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

A JSON array of objects, each containing the following fields, or an error if the request is unsuccessful.

  • ticker

    Ticker symbol of the company.

  • filing_date

    Date of the SEC filing in YYYY-MM-DD format.

  • filing_url

    URL of the SEC filing.

  • form_type

    Type of SEC filing (e.g. 8-K).

Sample Request Live Demo!

ticker
filing
start
end
limit

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/sec?ticker=AAPL&filing=8-K

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON

Code Examples

1 2 curl -X GET "https://api.api-ninjas.com/v1/sec?ticker=AAPL&filing=8-K" \ -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.