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

# Sector conviction aggregates for heatmap

> Returns aggregated conviction data per sector for the sector heatmap in the screener.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/screener/sector-summary
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/screener/sector-summary:
    get:
      tags:
        - Screener
      summary: Sector conviction aggregates for heatmap
      description: >-
        Returns aggregated conviction data per sector for the sector heatmap in
        the screener.
      operationId: get_sector_summary_api_graph_v1_screener_sector_summary_get
      responses:
        '200':
          description: Sector conviction aggregates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SectorSummaryResponse'
        '504':
          description: Query timeout
components:
  schemas:
    SectorSummaryResponse:
      properties:
        sectors:
          items:
            $ref: '#/components/schemas/SectorSummary'
          type: array
          title: Sectors
        total_stocks:
          type: integer
          title: Total Stocks
        query_ms:
          type: number
          title: Query Ms
      type: object
      required:
        - sectors
        - total_stocks
        - query_ms
      title: SectorSummaryResponse
      description: Response for sector conviction heatmap.
    SectorSummary:
      properties:
        sector:
          type: string
          title: Sector
        stock_count:
          type: integer
          title: Stock Count
        median_conviction:
          anyOf:
            - type: number
            - type: 'null'
          title: Median Conviction
        median_net_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Median Net Confluence
        avg_conviction_delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Conviction Delta
        top_movers:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          title: Top Movers
      type: object
      required:
        - sector
        - stock_count
      title: SectorSummary
      description: Aggregated conviction data for a single sector.

````