> ## 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.

# Company Facts

> Returns basic company information sourced from SEC EDGAR, including the SEC CIK number, legal company name, Standard Industrial Classification (SIC) code and description, state of incorporation, and fiscal year end date.



## OpenAPI

````yaml /openapi.json get /stocks/company-facts
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/company-facts:
    get:
      tags:
        - Fundamentals
      summary: Company Facts
      description: >-
        Returns basic company information sourced from SEC EDGAR, including the
        SEC CIK number, legal company name, Standard Industrial Classification
        (SIC) code and description, state of incorporation, and fiscal year end
        date.
      operationId: get_company_company_facts_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)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyFacts'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CompanyFacts:
      properties:
        ticker:
          type: string
          title: Ticker
          description: Stock ticker symbol (uppercase)
        cik:
          type: string
          title: Cik
          description: >-
            SEC Central Index Key — unique identifier assigned by the SEC to
            each registrant
        company_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Company Name
          description: Legal company name as registered with the SEC
        sic_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Sic Code
          description: >-
            Standard Industrial Classification code identifying the company's
            industry
        sic_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Sic Description
          description: Human-readable description of the SIC industry code
        state_of_incorporation:
          anyOf:
            - type: string
            - type: 'null'
          title: State Of Incorporation
          description: US state (or country) where the company is legally incorporated
        fiscal_year_end:
          anyOf:
            - type: string
            - type: 'null'
          title: Fiscal Year End
          description: Month and day of fiscal year end (MM-DD format, e.g. '12-31')
      type: object
      required:
        - ticker
        - cik
      title: CompanyFacts
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````