Skip to main content
GET
/
v1
/
filings
/
{exchange}
/
{ticker}
/
{slug}
/
pages
curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/pages"

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.

Overview

Returns a list of all pages within a specific SEC filing. 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).
curl "https://api.okrapdf.com/v1/filings/NASDAQ/AAPL/0000320193-23-000106/pages"

Response

{
  "pages": [
    {
      "page_number": 1,
      "width": 612,
      "height": 792
    },
    {
      "page_number": 2,
      "width": 612,
      "height": 792
    }
  ]
}