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

# Get historical financial statements

> Return historical financial statement periods for a symbol.

Supports annual (up to 5 years) and quarterly (up to 8 quarters).



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/research/{symbol}/financials
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/graph/v1/research/{symbol}/financials:
    get:
      tags:
        - Research
      summary: Get historical financial statements
      description: |-
        Return historical financial statement periods for a symbol.

        Supports annual (up to 5 years) and quarterly (up to 8 quarters).
      operationId: get_financials_api_graph_v1_research__symbol__financials_get
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
        - name: period
          in: query
          required: false
          schema:
            type: string
            pattern: ^(annual|quarterly)$
            default: annual
            title: Period
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            default: 5
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FinancialStatementsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FinancialStatementsResponse:
      properties:
        symbol:
          type: string
          title: Symbol
        period_type:
          type: string
          title: Period Type
        periods:
          items:
            $ref: '#/components/schemas/FinancialStatementPeriod'
          type: array
          title: Periods
        count:
          type: integer
          title: Count
      type: object
      required:
        - symbol
        - period_type
        - periods
        - count
      title: FinancialStatementsResponse
      description: Response for /research/{symbol}/financials endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FinancialStatementPeriod:
      properties:
        symbol:
          type: string
          title: Symbol
        period_type:
          type: string
          title: Period Type
          description: annual or quarter
        fiscal_year:
          type: integer
          title: Fiscal Year
        fiscal_period:
          type: string
          title: Fiscal Period
          description: FY for annual, Q1-Q4 for quarterly
        period_end_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Period End Date
        income_statement:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Income Statement
        balance_sheet:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Balance Sheet
        cash_flow:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Cash Flow
        key_metrics:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Key Metrics
        ratios:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Ratios
        collected_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Collected At
      type: object
      required:
        - symbol
        - period_type
        - fiscal_year
        - fiscal_period
      title: FinancialStatementPeriod
      description: A single fiscal period with all statement data.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````