> ## 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 latest vol regime

> Get the most recent volatility regime classification for a symbol.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/regime/{symbol}/vol
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/{symbol}/vol:
    get:
      tags:
        - Market Microstructure
      summary: Get latest vol regime
      description: Get the most recent volatility regime classification for a symbol.
      operationId: get_latest_vol_regime_api_graph_v1_regime__symbol__vol_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/VolRegimeSnapshotResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    VolRegimeSnapshotResponse:
      properties:
        symbol:
          type: string
          title: Symbol
        time:
          type: string
          title: Time
        regime:
          type: string
          title: Regime
          description: CRISIS | STRESSED | CAUTIOUS | TRANSITIONAL | RISK_ON | COMPLACENT
        regime_confidence:
          type: integer
          maximum: 100
          minimum: 0
          title: Regime Confidence
        term_structure:
          anyOf:
            - type: string
            - type: 'null'
          title: Term Structure
        near_term_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Near Term Iv
        far_term_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Far Term Iv
        term_slope:
          anyOf:
            - type: number
            - type: 'null'
          title: Term Slope
        skew_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Skew Label
        skew_ratio:
          anyOf:
            - type: number
            - type: 'null'
          title: Skew Ratio
        skew_zscore:
          anyOf:
            - type: number
            - type: 'null'
          title: Skew Zscore
        put_25d_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Put 25D Iv
        call_25d_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Call 25D Iv
        vov_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Vov Label
        vov_ratio:
          anyOf:
            - type: number
            - type: 'null'
          title: Vov Ratio
        atm_iv:
          anyOf:
            - type: number
            - type: 'null'
          title: Atm Iv
        iv_rank_252d:
          anyOf:
            - type: number
            - type: 'null'
          title: Iv Rank 252D
        iv_percentile_252d:
          anyOf:
            - type: number
            - type: 'null'
          title: Iv Percentile 252D
        realized_vol_20d:
          anyOf:
            - type: number
            - type: 'null'
          title: Realized Vol 20D
        iv_rv_premium:
          anyOf:
            - type: number
            - type: 'null'
          title: Iv Rv Premium
        vix_level:
          anyOf:
            - type: number
            - type: 'null'
          title: Vix Level
        vix_regime:
          anyOf:
            - type: string
            - type: 'null'
          title: Vix Regime
        vix_term_structure:
          anyOf:
            - type: string
            - type: 'null'
          title: Vix Term Structure
        computation_ms:
          type: integer
          title: Computation Ms
          default: 0
      type: object
      required:
        - symbol
        - time
        - regime
        - regime_confidence
      title: VolRegimeSnapshotResponse
      description: Single vol regime classification for a symbol.
    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

````