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

# Search Filing

> Full-text search within a specific filing.

## Overview

Search for text within a specific filing. Returns matching nodes and their locations. No authentication required.

## Request

<ParamField path="exchange" type="string" required>
  Stock exchange code (e.g. `NASDAQ`).
</ParamField>

<ParamField path="ticker" type="string" required>
  Company ticker symbol (e.g. `AAPL`).
</ParamField>

<ParamField path="slug" type="string" required>
  Filing slug, typically the SEC accession number (e.g. `0000320193-23-000106`).
</ParamField>

<ParamField query="q" type="string" required>
  Search query string.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/search?q=revenue"
  ```
</RequestExample>

### Response

```json theme={null}
{
  "results": [
    {
      "node_id": "node-abc123",
      "page": 12,
      "snippet": "...total revenue of $383.3 billion..."
    }
  ]
}
```
