Skip to main content
GET
/
v1
/
filings
/
{exchange}
/
{ticker}
/
{slug}
/
nodes
curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/nodes?type=table&limit=10"

Overview

Returns structured nodes extracted from a filing. Filter by node type or page, with pagination support. No authentication required.

Request

exchange
string
required
Stock exchange code (e.g. NASDAQ).
ticker
string
required
Company ticker symbol (e.g. AAPL).
slug
string
required
Filing slug, typically the SEC accession number (e.g. 0000320193-23-000106).
type
string
Filter by node type (e.g. table, text, title).
page
integer
Filter nodes to a specific page number.
limit
integer
Maximum number of nodes to return.
offset
integer
Number of nodes to skip for pagination.
curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/nodes?type=table&limit=10"

Response

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