SEC API

The SEC API allows you to search millions of SEC filings from thousands of public companies.

(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
399ms443ms464ms747ms1128ms

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 SEC filing information (including the submission URL) corresponding to the given search parameters.

Parameters

  • ticker  required

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

  • filing  required

    SEC filing form type. The following values are supported:

    10-K, 10-Q, S-1, S-2, S-3, 8-K, DEF14A, 13D

  • 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

  • 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.

Sample Request Live Demo!

ticker
filing
start premium
end premium
limit premium

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

https://api.api-ninjas.com/v1/sec?ticker=AAPL&filing=10-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=10-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 a HTTP request library written in your programming language and following the above documentation.