> ## Documentation Index
> Fetch the complete documentation index at: https://tradewatch.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# SEC Filings

> Returns a list of SEC EDGAR filings for a given company. Includes annual reports (10-K), quarterly reports (10-Q), current reports (8-K), and other filing types. Each record contains the accession number, dates, and a direct link to the filing document on SEC EDGAR. Results are ordered by `filing_date` descending.



## OpenAPI

````yaml /openapi.json get /stocks/filings
openapi: 3.1.0
info:
  title: tradewatch.io
  version: 3.1.0
  description: Financial market data for Developers
servers:
  - url: https://api.tradewatch.io
    description: Production API server
security:
  - API Key: []
tags:
  - name: Account
    description: >-
      In this section, you can find methods that can be helpful to manage your
      API account.
    x-displayName: Account
  - name: Currencies
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for traditional currencies (Forex).
    x-displayName: Currencies
  - name: Crypto
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for cryptocurrencies.
    x-displayName: Crypto
  - name: Indices
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for market indices.
    x-displayName: Indices
  - name: Stocks
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for stocks and equities.
    x-displayName: Stocks
  - name: Fundamentals
    description: Financial statements and company data sourced from SEC EDGAR filings.
  - name: Markets
    description: Stock exchange and market session information.
  - name: Commodities
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for commodities.
    x-displayName: Commodities
paths:
  /stocks/filings:
    get:
      tags:
        - Fundamentals
      summary: SEC Filings
      description: >-
        Returns a list of SEC EDGAR filings for a given company. Includes annual
        reports (10-K), quarterly reports (10-Q), current reports (8-K), and
        other filing types. Each record contains the accession number, dates,
        and a direct link to the filing document on SEC EDGAR. Results are
        ordered by `filing_date` descending.
      operationId: list_filings_filings_get
      parameters:
        - name: ticker
          in: query
          required: true
          schema:
            type: string
            description: Stock ticker symbol (e.g. AAPL)
            title: Ticker
          description: Stock ticker symbol (e.g. AAPL)
        - name: filing_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by SEC filing type (e.g. `10-K`, `10-Q`, `8-K`)
            title: Filing Type
          description: Filter by SEC filing type (e.g. `10-K`, `10-Q`, `8-K`)
        - name: limit
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
                maximum: 100
                minimum: 1
              - type: 'null'
            description: Maximum number of records to return (1–100)
            title: Limit
          description: Maximum number of records to return (1–100)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FilingsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FilingsResponse:
      properties:
        ticker:
          type: string
          title: Ticker
          description: Stock ticker symbol (uppercase)
        filings:
          items:
            $ref: '#/components/schemas/FilingItem'
          type: array
          title: Filings
          description: List of SEC filings ordered by filing date descending
      type: object
      required:
        - ticker
        - filings
      title: FilingsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FilingItem:
      properties:
        accession_number:
          type: string
          title: Accession Number
          description: >-
            SEC accession number uniquely identifying the filing (e.g.
            0000320193-23-000077)
        filing_type:
          type: string
          title: Filing Type
          description: SEC filing type (e.g. 10-K, 10-Q, 8-K)
        filing_date:
          type: string
          format: date
          title: Filing Date
          description: Date the filing was submitted to the SEC (YYYY-MM-DD)
        report_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Report Date
          description: End date of the reporting period covered by this filing (YYYY-MM-DD)
        period_of_report:
          anyOf:
            - type: string
            - type: 'null'
          title: Period Of Report
          description: Period of report as declared in the filing header
        file_url:
          anyOf:
            - type: string
            - type: 'null'
          title: File Url
          description: Direct URL to the filing document on SEC EDGAR
      type: object
      required:
        - accession_number
        - filing_type
        - filing_date
      title: FilingItem
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    API Key:
      description: Authentication via API key header
      type: apiKey
      name: api-key
      in: header

````