> ## 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 Snapshot Range



## OpenAPI

````yaml /api/openapi.json get /api/internal/regime/v2/snapshots/range
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/internal/regime/v2/snapshots/range:
    get:
      tags:
        - regime-vnext-internal
      summary: Get Snapshot Range
      operationId: get_snapshot_range_api_internal_regime_v2_snapshots_range_get
      parameters:
        - name: asset
          in: query
          required: false
          schema:
            type: string
            default: SPY
            title: Asset
        - name: start
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Start
        - name: end
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: End
        - name: logic_version
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Logic Version
        - name: variant
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Variant
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RegimeSnapshotV2'
                title: >-
                  Response Get Snapshot Range Api Internal Regime V2 Snapshots
                  Range Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RegimeSnapshotV2:
      properties:
        snapshot_id:
          type: string
          title: Snapshot Id
        logic_version:
          type: string
          title: Logic Version
        feature_version:
          type: string
          title: Feature Version
        variant:
          type: string
          title: Variant
          default: corrected
        as_of:
          type: string
          format: date-time
          title: As Of
        effective_for_session:
          type: string
          format: date
          title: Effective For Session
        asset_scope:
          $ref: '#/components/schemas/AssetScope'
        horizon_profile:
          $ref: '#/components/schemas/HorizonProfile'
        feature_binding:
          $ref: '#/components/schemas/FeatureBinding'
        risk_state:
          $ref: '#/components/schemas/RiskState'
        volatility_change:
          $ref: '#/components/schemas/VolatilityChange'
        directional_pressure:
          $ref: '#/components/schemas/DirectionalPressure'
        breadth_state:
          $ref: '#/components/schemas/BreadthState'
        correlation_state:
          $ref: '#/components/schemas/CorrelationState'
        intraday_structure:
          $ref: '#/components/schemas/IntradayStructure'
        unavailable_inputs:
          items:
            type: string
          type: array
          title: Unavailable Inputs
        risk_classifier_version:
          type: string
          title: Risk Classifier Version
          default: risk-v2.0
        risk_inputs_complete:
          type: boolean
          title: Risk Inputs Complete
          default: false
        provenance:
          items:
            $ref: '#/components/schemas/ProvenanceRef'
          type: array
          title: Provenance
        legacy_shadow_grid:
          anyOf:
            - $ref: '#/components/schemas/LegacyShadowGrid'
            - type: 'null'
      additionalProperties: false
      type: object
      required:
        - snapshot_id
        - logic_version
        - feature_version
        - as_of
        - effective_for_session
        - asset_scope
        - horizon_profile
        - feature_binding
        - risk_state
        - volatility_change
        - directional_pressure
        - breadth_state
        - correlation_state
        - intraday_structure
      title: RegimeSnapshotV2
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AssetScope:
      properties:
        kind:
          type: string
          enum:
            - market_index
            - symbol
            - universe
            - portfolio
          title: Kind
          default: market_index
        primary_asset:
          type: string
          title: Primary Asset
          default: SPY
        universe:
          items:
            type: string
          type: array
          maxItems: 500
          title: Universe
      additionalProperties: false
      type: object
      title: AssetScope
    HorizonProfile:
      type: string
      enum:
        - macro
        - swing
        - intraday
      title: HorizonProfile
    FeatureBinding:
      type: string
      enum:
        - prior_session
        - prior_bar
      title: FeatureBinding
    RiskState:
      type: string
      enum:
        - calm
        - normal
        - elevated
        - stress
        - unavailable
      title: RiskState
    VolatilityChange:
      type: string
      enum:
        - compressing
        - stable
        - expanding
        - unavailable
      title: VolatilityChange
    DirectionalPressure:
      type: string
      enum:
        - upside_extended
        - downside_extended
        - balanced
        - persistent_trend
      title: DirectionalPressure
    BreadthState:
      type: string
      enum:
        - broad
        - narrow
        - deteriorating
        - recovering
        - unavailable
      title: BreadthState
    CorrelationState:
      type: string
      enum:
        - diversified
        - correlated
        - turbulent
        - unavailable
      title: CorrelationState
    IntradayStructure:
      type: string
      enum:
        - range_bound
        - trend_day
        - opening_drive
        - failed_auction
        - high_noise
        - unavailable
      title: IntradayStructure
    ProvenanceRef:
      properties:
        source:
          type: string
          title: Source
        source_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Id
        artifact_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Artifact Id
        as_of:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: As Of
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
      additionalProperties: false
      type: object
      required:
        - source
      title: ProvenanceRef
    LegacyShadowGrid:
      properties:
        direction:
          anyOf:
            - type: string
            - type: 'null'
          title: Direction
        volatility:
          anyOf:
            - type: string
            - type: 'null'
          title: Volatility
        grid_cell:
          anyOf:
            - type: string
            - type: 'null'
          title: Grid Cell
        logic_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Logic Version
        variant:
          anyOf:
            - type: string
            - type: 'null'
          title: Variant
      additionalProperties: false
      type: object
      title: LegacyShadowGrid
      description: Legacy 2x3 grid retained for diagnostics, never direct vNext policy.
    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

````