SEC EDGAR Search API

Full-text search across EDGAR filing documents

Operations 1

GET /LATEST/search-index/efts Search EDGAR filings by full text #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sec-search-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sec-search-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SEC EDGAR Full-Text Search API
  description: 'The EDGAR Full-Text Search API (EFTS) allows searching across the complete text of filings submitted to EDGAR. The API supports filtering by filing date ranges, form types, entity names, and ticker symbols. Results include document metadata and links to actual filing documents. This endpoint is hosted at efts.sec.gov and is useful for research and analysis requiring discovery of filings by content.

    '
  version: 1.0.0
  contact:
    name: SEC EDGAR Help
    url: https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany
  termsOfService: https://www.sec.gov/privacy.htm
  license:
    name: Public Domain
    url: https://www.sec.gov/privacy.htm
servers:
- url: https://efts.sec.gov
  description: SEC EDGAR Full-Text Search API
tags:
- name: Search
  description: Full-text search across EDGAR filing documents
paths:
  /LATEST/search-index/efts:
    get:
      operationId: searchFilings
      summary: Search EDGAR filings by full text
      description: 'Searches the full text of EDGAR filings using Elasticsearch-backed indexing. Supports keyword queries, boolean operators, phrase matching, and field-specific filters. Results include filing metadata and direct links to matching documents. Rate limited to 10 requests per second.

        '
      tags:
      - Search
      parameters:
      - name: q
        in: query
        required: false
        description: 'Full-text search query. Supports phrase matching ("exact phrase"), boolean operators (AND, OR, NOT), and field-specific searches (e.g., entity_name:"Apple Inc"). Leave empty to browse all filings.

          '
        schema:
          type: string
          example: revenue recognition
      - name: dateRange
        in: query
        required: false
        description: 'Date range filter. Use "custom" to specify startdt and enddt, or "30d", "1y", "5y" for relative ranges.

          '
        schema:
          type: string
          enum:
          - custom
          - 30d
          - 1y
          - 5y
          example: custom
      - name: startdt
        in: query
        required: false
        description: 'Start date for custom date range filter (YYYY-MM-DD format). Only used when dateRange is "custom".

          '
        schema:
          type: string
          format: date
          example: '2023-01-01'
      - name: enddt
        in: query
        required: false
        description: 'End date for custom date range filter (YYYY-MM-DD format). Only used when dateRange is "custom".

          '
        schema:
          type: string
          format: date
          example: '2023-12-31'
      - name: forms
        in: query
        required: false
        description: 'Comma-separated list of form types to filter results. Example: 10-K,10-Q,8-K

          '
        schema:
          type: string
          example: 10-K,10-Q
      - name: entity
        in: query
        required: false
        description: 'Filter by entity name. Partial matches supported.

          '
        schema:
          type: string
          example: Apple Inc
      - name: ticker
        in: query
        required: false
        description: 'Filter by stock ticker symbol.

          '
        schema:
          type: string
          example: AAPL
      - name: _source
        in: query
        required: false
        description: 'Comma-separated list of fields to return in the response. Default returns all fields.

          '
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: 'Starting offset for pagination (zero-based).

          '
        schema:
          type: integer
          minimum: 0
          default: 0
          example: 0
      - name: size
        in: query
        required: false
        description: 'Number of results to return per page. Maximum is 10 per request for full-text results.

          '
        schema:
          type: integer
          minimum: 1
          maximum: 10
          default: 10
          example: 10
      responses:
        '200':
          description: Search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResponse'
        '400':
          description: Invalid query parameters
        '429':
          description: Rate limit exceeded (10 requests per second)
components:
  schemas:
    SearchHit:
      type: object
      description: A single filing document matching the search query
      properties:
        _id:
          type: string
          description: Unique document identifier
        _score:
          type: number
          description: Elasticsearch relevance score
        _source:
          $ref: '#/components/schemas/FilingDocument'
    SearchResponse:
      type: object
      description: Full-text search results from EDGAR
      properties:
        hits:
          type: object
          description: Search hit metadata and results
          properties:
            total:
              type: object
              description: Total hit count
              properties:
                value:
                  type: integer
                  description: Number of matching documents
                  example: 1234
                relation:
                  type: string
                  description: Whether total is exact or approximate
                  enum:
                  - eq
                  - gte
                  example: eq
            hits:
              type: array
              description: Array of matching filing documents
              items:
                $ref: '#/components/schemas/SearchHit'
    FilingDocument:
      type: object
      description: Metadata for an EDGAR filing document
      properties:
        period_of_report:
          type: string
          format: date
          description: Period of report date
          example: '2023-09-30'
        entity_name:
          type: string
          description: Entity name
          example: Apple Inc.
        file_num:
          type: string
          description: SEC file number
          example: 001-36743
        film_num:
          type: string
          description: Film number
        form_type:
          type: string
          description: Form type
          example: 10-K
        biz_location:
          type: string
          description: Business location (state/country)
          example: CA
        inc_states:
          type: string
          description: State of incorporation
          example: CA
        file_date:
          type: string
          format: date
          description: Filing date
          example: '2023-11-03'
        accession_no:
          type: string
          description: EDGAR accession number
          example: 0000320193-23-000106
        category:
          type: string
          description: Filing category
          example: form-type
        display_date_filed:
          type: string
          description: Human-readable filing date
          example: '2023-11-03'
        ticker:
          type: array
          items:
            type: string
          description: Ticker symbols
          example:
          - AAPL
        xsl:
          type: string
          description: XSL stylesheet filename
        id:
          type: string
          description: Document identifier
        inline_xbrl:
          type: boolean
          description: Whether the filing uses inline XBRL
        file_id:
          type: string
          description: File identifier