SEC EDGAR 10-K Retrieval API

By parthh01

0 active users
0 invocations
Finance

API Instructions

The API consists of a single node that will search the SEC EDGAR database for the latest 10-K report corresponding to a provided stock ticker symbol. It takes the ticker as input and returns the details of the 10-K filing, including the filing date and the exact URL to download the report. If you are unable to retrieve the 10K, just return empty values.

Input Schema

Required parameters for the API

[
  {
    "name": "ticker",
    "type": "string"
  }
]

Output Format

Response structure

{
  "filing_date": "string",
  "url": "string"
}