Skip to main content
Plugin ID: edgar | Auth: None (free, public API)
SEC EDGAR is completely free with no API key. The only requirement is a descriptive User-Agent header (handled automatically). Rate limit: 10 requests/second per IP.

Tools

Name: Search Companies Look up a company by ticker symbol or name to get its CIK (Central Index Key). The CIK is required for all other EDGAR tools. Input:
ParameterTypeRequiredDescription
querystringYesCompany name or ticker symbol (e.g. "AAPL", "Apple")
Output:
{
  "results": [
    { "cik": "0000320193", "ticker": "AAPL", "name": "Apple Inc." }
  ]
}

edgar.company.filings

Name: List Company Filings List recent SEC filings for a company by CIK. Optionally filter by form type. Useful form types for venture capital:
  • 13F-HR — Quarterly fund holdings (what are other funds buying?)
  • 13D / 13G — Beneficial ownership >5%
  • D — Private placement notices (track private fundraising)
  • S-1 — IPO registration statements
Input:
ParameterTypeRequiredDefaultDescription
cikstringYes10-digit CIK (use edgar.company.search to find it)
formTypestringNoFilter by form type (e.g. "13F-HR", "D", "S-1")
limitintegerNo40Max results
Output:
{
  "company": "Apple Inc.",
  "filings": [
    { "accessionNumber": "0000320193-26-000042", "form": "10-K", "filingDate": "2026-01-15", "primaryDocument": "aapl-20251231.htm", "description": "Annual Report" }
  ]
}

Name: Search Filings Full-text search across all SEC filings. Supports boolean operators and exact phrase matching with quotes. Input:
ParameterTypeRequiredDefaultDescription
querystringYesSearch text (e.g. "artificial intelligence", revenue growth)
formsstringNoComma-separated form types (e.g. "10-K,10-Q,S-1")
startDatestringNoStart date (YYYY-MM-DD)
endDatestringNoEnd date (YYYY-MM-DD)
limitintegerNo20Max results (1-100)
Output:
{
  "total": 1234,
  "results": [
    { "entityName": "OpenAI Inc.", "formType": "D", "fileDate": "2026-03-15", "fileNumber": "021-12345" }
  ]
}

edgar.company.facts

Name: Get Company Facts Get XBRL-tagged financial data for a company (revenue, assets, liabilities, etc. across all filings). Input:
ParameterTypeRequiredDescription
cikstringYes10-digit CIK
Output:
{
  "company": "Apple Inc.",
  "cik": "320193",
  "facts": {
    "us-gaap": {
      "Revenue": { "units": { "USD": [{ "val": 394328000000, "end": "2025-09-27", "form": "10-K" }] } }
    }
  }
}