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

# Check earnings calendar for a symbol

> Check upcoming and recent earnings for a symbol.

## Data Source

Uses the `earnings_calendar` table populated by the Go daily-daemon
from Yahoo Finance.

## Response Fields

- **has_upcoming_earnings**: True if earnings within 14 days
- **next_earnings_date**: Date of next earnings announcement
- **earnings_time**: before_market, after_market, or time_not_supplied
- **days_until_earnings**: Days until next earnings
- **recent_earnings**: Last 4 earnings reports



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/news/earnings/{symbol}
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/news/earnings/{symbol}:
    get:
      tags:
        - News
      summary: Check earnings calendar for a symbol
      description: |-
        Check upcoming and recent earnings for a symbol.

        ## Data Source

        Uses the `earnings_calendar` table populated by the Go daily-daemon
        from Yahoo Finance.

        ## Response Fields

        - **has_upcoming_earnings**: True if earnings within 14 days
        - **next_earnings_date**: Date of next earnings announcement
        - **earnings_time**: before_market, after_market, or time_not_supplied
        - **days_until_earnings**: Days until next earnings
        - **recent_earnings**: Last 4 earnings reports
      operationId: check_earnings_api_graph_v1_news_earnings__symbol__get
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EarningsCheckResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EarningsCheckResponse:
      properties:
        symbol:
          type: string
          title: Symbol
          description: Stock ticker symbol
        has_upcoming_earnings:
          type: boolean
          title: Has Upcoming Earnings
          description: Whether earnings are upcoming
        next_earnings_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Earnings Date
          description: Next earnings date
        earnings_time:
          anyOf:
            - type: string
            - type: 'null'
          title: Earnings Time
          description: Time of earnings (before_market, after_market)
        days_until_earnings:
          anyOf:
            - type: integer
            - type: 'null'
          title: Days Until Earnings
          description: Days until next earnings
        recent_earnings:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Recent Earnings
          description: Recent earnings history
      type: object
      required:
        - symbol
        - has_upcoming_earnings
      title: EarningsCheckResponse
      description: Earnings calendar check response.
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````