Skip to main content
GET
/
v1
/
filings
curl "https://api.okrapdf.com/v1/filings?exchange=NASDAQ&ticker=AAPL&type=10-K"

Overview

Returns a paginated list of SEC filings. Filter by exchange, ticker, or filing type. No authentication required.

Request

exchange
string
Stock exchange code (e.g. NYSE, NASDAQ).
ticker
string
Company ticker symbol (e.g. AAPL, MSFT).
type
string
Filing type (e.g. 10-K, 10-Q, 8-K).
limit
integer
Maximum number of filings to return.
curl "https://api.okrapdf.com/v1/filings?exchange=NASDAQ&ticker=AAPL&type=10-K"

Response

{
  "filings": [
    {
      "exchange": "NASDAQ",
      "ticker": "AAPL",
      "slug": "0000320193-23-000106",
      "type": "10-K",
      "filed_at": "2023-11-03"
    }
  ]
}