> ## 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 all symbols — compact GEX + regime

> Get compact GEX + vol regime summary for all tracked symbols.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/regime/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/regime/summary:
    get:
      tags:
        - Market Microstructure
      summary: Get all symbols — compact GEX + regime
      description: Get compact GEX + vol regime summary for all tracked symbols.
      operationId: get_regime_summary_api_graph_v1_regime_summary_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegimeSummaryResponse'
components:
  schemas:
    RegimeSummaryResponse:
      properties:
        symbols:
          items:
            $ref: '#/components/schemas/RegimeSummaryItem'
          type: array
          title: Symbols
        scheduler_running:
          type: boolean
          title: Scheduler Running
          default: false
        last_computation:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Computation
      type: object
      title: RegimeSummaryResponse
      description: Summary of all tracked symbols.
    RegimeSummaryItem:
      properties:
        symbol:
          type: string
          title: Symbol
        gex_regime:
          anyOf:
            - type: string
            - type: 'null'
          title: Gex Regime
        total_gex:
          anyOf:
            - type: number
            - type: 'null'
          title: Total Gex
        gamma_flip_strike:
          anyOf:
            - type: number
            - type: 'null'
          title: Gamma Flip Strike
        pin_strike:
          anyOf:
            - type: number
            - type: 'null'
          title: Pin Strike
        vol_regime:
          anyOf:
            - type: string
            - type: 'null'
          title: Vol Regime
        vol_regime_confidence:
          anyOf:
            - type: integer
            - type: 'null'
          title: Vol Regime Confidence
        atm_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Atm Iv
        iv_rank_252d:
          anyOf:
            - type: number
            - type: 'null'
          title: Iv Rank 252D
        term_structure:
          anyOf:
            - type: string
            - type: 'null'
          title: Term Structure
        skew_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Skew Label
        vix_level:
          anyOf:
            - type: number
            - type: 'null'
          title: Vix Level
        last_updated:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Updated
      type: object
      required:
        - symbol
      title: RegimeSummaryItem
      description: Compact GEX + regime summary for one symbol.

````