Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.secapi.ai/llms.txt

Use this file to discover all available pages before exploring further.

EDGAR Filing Search API

Search 14M+ SEC filings by 20+ parameters. Powered by Typesense with Lucene query syntax support, full pagination, and sub-200ms p95 latency.

Why use this

Most EDGAR search tools offer keyword-only queries against a limited window. SEC API Filing Search indexes the full EDGAR corpus and exposes structured filters that agents and applications can compose without screen-scraping.
  • 20+ filter parameters — ticker, CIK, form type, date range, SIC code, exchange, filing category, and more
  • Lucene syntax support — boolean logic, phrase matching, wildcards, and field-scoped queries
  • Typesense-backed — consistent sub-200ms response times with relevance scoring
  • Agent-friendly pagination — cursor-based traversal with predictable page sizes

Quick start

curl -H "x-api-key: $SECAPI_API_KEY" \
  "https://api.secapi.ai/v1/filings?ticker=AAPL&form=10-K&limit=5"

Example: search by date range and form type

curl -H "x-api-key: $SECAPI_API_KEY" \
  "https://api.secapi.ai/v1/filings?ticker=MSFT&form=10-Q&limit=10"

Response shape

{
  "filings": [
    {
      "accessionNumber": "0000320193-23-000077",
      "form": "10-K",
      "filedAt": "2023-11-03T00:00:00Z",
      "ticker": "AAPL",
      "companyName": "Apple Inc.",
      "cik": "0000320193",
      "periodOfReport": "2023-09-30",
      "documentUrl": "https://www.sec.gov/Archives/edgar/data/..."
    }
  ],
  "pagination": {
    "total": 42,
    "page": 1,
    "limit": 5,
    "cursor": "eyJ..."
  }
}

Key parameters

ParameterTypeDescription
tickerstringCompany ticker symbol
cikstringSEC Central Index Key
formstringFiling form type (10-K, 10-Q, 8-K, etc.)
limitnumberResults per page (max 50)
cursorstringPagination cursor

Rate limits

Rate limits vary by plan and workload. Use the billing and usage endpoints to inspect your current quota, and log response metadata for support.