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

Overview

Returns the audit trail showing all processing steps and their outcomes for a 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/audit"

Response

{
  "audit": [
    {
      "step": "upload",
      "status": "complete",
      "timestamp": "2024-01-15T10:30:00Z"
    },
    {
      "step": "ocr",
      "status": "complete",
      "timestamp": "2024-01-15T10:31:12Z"
    }
  ]
}