> ## 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 Research Run



## OpenAPI

````yaml /api/openapi.json get /api/internal/regime/v2/research/runs/{run_id}
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/research/runs/{run_id}:
    get:
      tags:
        - regime-vnext-internal
      summary: Get Research Run
      operationId: get_research_run_api_internal_regime_v2_research_runs__run_id__get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            title: Run Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResearchRunManifest'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResearchRunManifest:
      properties:
        run_id:
          type: string
          title: Run Id
        created_at:
          type: string
          format: date-time
          title: Created At
        logic_version:
          type: string
          title: Logic Version
        feature_version:
          type: string
          title: Feature Version
        variant:
          type: string
          title: Variant
        horizon_profiles:
          items:
            $ref: '#/components/schemas/HorizonProfile'
          type: array
          title: Horizon Profiles
        asset_scope:
          $ref: '#/components/schemas/AssetScope'
        snapshot_ids:
          items:
            type: string
          type: array
          title: Snapshot Ids
        evidence_ids:
          items:
            type: string
          type: array
          title: Evidence Ids
        artifact_ids:
          items:
            type: string
          type: array
          title: Artifact Ids
        input_artifact_refs:
          items:
            $ref: '#/components/schemas/ProvenanceRef'
          type: array
          title: Input Artifact Refs
        source_query_windows:
          items:
            $ref: '#/components/schemas/SourceQueryWindow'
          type: array
          title: Source Query Windows
        cost_model_id:
          type: string
          title: Cost Model Id
        strategy_family_registry_version:
          type: string
          title: Strategy Family Registry Version
        code_version_pins:
          additionalProperties:
            type: string
          type: object
          title: Code Version Pins
        immutable_hash:
          type: string
          title: Immutable Hash
        status:
          type: string
          enum:
            - completed
            - failed
          title: Status
        notes:
          items:
            type: string
          type: array
          title: Notes
      additionalProperties: false
      type: object
      required:
        - run_id
        - created_at
        - logic_version
        - feature_version
        - variant
        - horizon_profiles
        - asset_scope
        - cost_model_id
        - strategy_family_registry_version
        - immutable_hash
        - status
      title: ResearchRunManifest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    HorizonProfile:
      type: string
      enum:
        - macro
        - swing
        - intraday
      title: HorizonProfile
    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
    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
    SourceQueryWindow:
      properties:
        source:
          type: string
          title: Source
        start:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Start
        end:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: End
        horizon_binding:
          anyOf:
            - $ref: '#/components/schemas/FeatureBinding'
            - type: 'null'
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
      additionalProperties: false
      type: object
      required:
        - source
      title: SourceQueryWindow
    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
    FeatureBinding:
      type: string
      enum:
        - prior_session
        - prior_bar
      title: FeatureBinding

````