> ## Documentation Index
> Fetch the complete documentation index at: https://docs.okrapdf.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Filings

> List all available SEC filings, optionally filtered by exchange, ticker, or type.

## Overview

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

## Request

<ParamField query="exchange" type="string">
  Stock exchange code (e.g. `NYSE`, `NASDAQ`).
</ParamField>

<ParamField query="ticker" type="string">
  Company ticker symbol (e.g. `AAPL`, `MSFT`).
</ParamField>

<ParamField query="type" type="string">
  Filing type (e.g. `10-K`, `10-Q`, `8-K`).
</ParamField>

<ParamField query="limit" type="integer">
  Maximum number of filings to return.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl "https://api.okrapdf.com/v1/filings?exchange=NASDAQ&ticker=AAPL&type=10-K"
  ```
</RequestExample>

### Response

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