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

# Get Filing Page

> Retrieve content for a specific page in a filing.

## Overview

Returns the content of a single page within a filing by its 1-based page number. 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 path="page_number" type="integer" required>
  1-based page number.
</ParamField>

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

### Response

```json theme={null}
{
  "page_number": 1,
  "width": 612,
  "height": 792,
  "content": "..."
}
```
