> ## 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 Filing Nodes

> List extracted nodes (tables, text blocks, etc.) in a filing.

## Overview

Returns structured nodes extracted from a filing. Filter by node type or page, with pagination support. 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="type" type="string">
  Filter by node type (e.g. `table`, `text`, `title`).
</ParamField>

<ParamField query="page" type="integer">
  Filter nodes to a specific page number.
</ParamField>

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

<ParamField query="offset" type="integer">
  Number of nodes to skip for pagination.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/nodes?type=table&limit=10"
  ```
</RequestExample>

### Response

```json theme={null}
{
  "nodes": [
    {
      "id": "node-abc123",
      "type": "table",
      "page": 1,
      "content": "..."
    }
  ],
  "total": 42
}
```
