sec-edgar website screenshot

sec-edgar

SEC EDGAR (Electronic Data Gathering, Analysis, and Retrieval) is the U.S. Securities and Exchange Commission's online database where public companies file mandatory disclosures and other corporate filings.

4 APIs 0 Features

APIs

SEC EDGAR Full-Text Search API

The SEC EDGAR Full-Text Search API (EFTS) allows searching the full text of all EDGAR filings. Supports keyword search, date range filtering, form type filtering, and entity-bas...

SEC EDGAR Submissions API

The SEC EDGAR Submissions API returns all company filing metadata (10-K, 10-Q, 8-K, etc.) in JSON format for a given CIK number. Returns recent and historical submission data in...

SEC EDGAR XBRL Company Facts API

The SEC EDGAR XBRL Company Facts API delivers structured financial data extracted from XBRL-tagged filings. Returns all reported facts for a company including income statement, ...

SEC EDGAR Company Filings API

The SEC EDGAR (Electronic Data Gathering, Analysis, and Retrieval) system provides REST APIs for accessing company filings, XBRL financial data, and full-text search across SEC ...

Collections

Pricing Plans

Sec Edgar Plans Pricing

1 plans

PLANS

Rate Limits

Sec Edgar Rate Limits

1 limits

RATE LIMITS

FinOps

Semantic Vocabularies

Sec Edgar Context

29 classes · 6 properties

JSON-LD

Resources

🔗
DomainSecurity
DomainSecurity
👥
GitHubOrganization
GitHubOrganization
🌐
Portal
Portal
🔗
Documentation
Documentation
🚀
GettingStarted
GettingStarted
📜
PrivacyPolicy
PrivacyPolicy
🔗
Website
Website
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONLDContext
JSONLDContext
📰
Blog
Blog

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: SEC EDGAR Submissions & XBRL API
  version: 1.0.0
items:
- info:
    name: Submissions
    type: folder
  items:
  - info:
      name: Get company filing submission history
      type: http
    http:
      method: GET
      url: https://data.sec.gov/submissions/CIK:cik.json
      params:
      - name: cik
        value: 0000320193
        type: path
        description: '10-digit Central Index Key (CIK) with leading zeros. Example: 0000320193 for Apple Inc.'
    docs: Returns all filing metadata for a company identified by CIK (Central Index Key). Includes recent filings inline
      and older filings referenced in separate data files. Contains company metadata, SIC code, fiscal year end, and filing
      history.
- info:
    name: Company Facts
    type: folder
  items:
  - info:
      name: Get all XBRL facts for a company
      type: http
    http:
      method: GET
      url: https://data.sec.gov/api/xbrl/companyfacts/CIK:cik.json
      params:
      - name: cik
        value: 0000320193
        type: path
        description: 10-digit CIK with leading zeros
    docs: Returns all structured financial data reported in XBRL-tagged SEC filings for a company. Covers all US-GAAP and
      DEI taxonomy concepts across all filings. Data is organized by concept with historical values per period.
- info:
    name: XBRL
    type: folder
  items:
  - info:
      name: Get a single XBRL concept for a company
      type: http
    http:
      method: GET
      url: https://data.sec.gov/api/xbrl/companyconcept/CIK:cik/:taxonomy/:concept.json
      params:
      - name: cik
        value: 0000320193
        type: path
      - name: taxonomy
        value: us-gaap
        type: path
        description: XBRL taxonomy namespace
      - name: concept
        value: AccountsPayableCurrent
        type: path
        description: XBRL concept name (camelCase)
    docs: Returns all historical values reported for a specific XBRL concept by a company. For example, retrieve all reported
      values of AccountsPayableCurrent from the us-gaap taxonomy across all filings.
  - info:
      name: Get all company values for a concept in a period
      type: http
    http:
      method: GET
      url: https://data.sec.gov/api/xbrl/frames/:taxonomy/:concept/:unit/:period.json
      params:
      - name: taxonomy
        value: us-gaap
        type: path
      - name: concept
        value: AccountsPayableCurrent
        type: path
      - name: unit
        value: USD
        type: path
        description: Unit of measure (USD, shares, pure)
      - name: period
        value: CY2023Q4I
        type: path
        description: 'Period identifier. For annual instant: CY{year}Q{quarter}I. For annual duration: CY{year}.'
    docs: Returns values for a given XBRL concept across all companies for a specific period. Useful for cross-company financial
      data comparisons and benchmarking.
- info:
    name: Full-Text Search
    type: folder
  items:
  - info:
      name: Full-text search across EDGAR filings
      type: http
    http:
      method: GET
      url: https://data.sec.gov/LATEST/search-index
      params:
      - name: q
        value: '"material weakness" AND "internal controls"'
        type: query
        description: Full-text search query (Elasticsearch query string syntax)
      - name: dateRange
        value: custom
        type: query
        description: Date range filter
      - name: startdt
        value: '2024-01-01'
        type: query
      - name: enddt
        value: '2025-12-31'
        type: query
      - name: forms
        value: 10-K,10-Q
        type: query
        description: Comma-separated list of form types to filter
      - name: entity
        value: Apple Inc
        type: query
        description: Company name search filter
      - name: _source
        value: ''
        type: query
        description: Response fields to include
      - name: from
        value: ''
        type: query
        description: Pagination offset
      - name: hits.hits.total.value
        value: ''
        type: query
        description: Maximum results to return
    docs: Searches the full text of all EDGAR filings submitted since 2001. Supports keyword search, form type filtering,
      date ranges, and entity-based queries. Returns filing metadata and snippets.
bundled: true