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

> Full per-run dossier for the Prop-Firm Command detail view / future
Run Room (read-only, tenant-scoped, no new persistence).

Tenant scope mirrors `fork_from_run` (routes/strategies.py:549-553):
fetch by id via `store.read_run` (there is no `read_run_for_user` on
`ResearchRunStore` -- store.py's Protocol has no such method), then
compare `user_id` -- a cross-tenant run and a nonexistent run both 404
identically, so existence is never leaked.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/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/graph/v1/research-runs/{run_id}:
    get:
      tags:
        - research-runs
      summary: Get Research Run Detail
      description: |-
        Full per-run dossier for the Prop-Firm Command detail view / future
        Run Room (read-only, tenant-scoped, no new persistence).

        Tenant scope mirrors `fork_from_run` (routes/strategies.py:549-553):
        fetch by id via `store.read_run` (there is no `read_run_for_user` on
        `ResearchRunStore` -- store.py's Protocol has no such method), then
        compare `user_id` -- a cross-tenant run and a nonexistent run both 404
        identically, so existence is never leaked.
      operationId: get_research_run_detail_api_graph_v1_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/ResearchRunDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResearchRunDetail:
      properties:
        run_id:
          type: string
          title: Run Id
        status:
          type: string
          title: Status
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        edge:
          anyOf:
            - type: string
            - type: 'null'
          title: Edge
        verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Verdict
        regime:
          anyOf:
            - type: string
            - type: 'null'
          title: Regime
        confidence:
          anyOf:
            - type: string
            - type: 'null'
          title: Confidence
        rationale:
          anyOf:
            - type: string
            - type: 'null'
          title: Rationale
        phase:
          anyOf:
            - type: string
            - type: 'null'
          title: Phase
        origin_thesis:
          anyOf:
            - type: string
            - type: 'null'
          title: Origin Thesis
        origin_edge:
          anyOf:
            - type: string
            - type: 'null'
          title: Origin Edge
        gates:
          items:
            $ref: '#/components/schemas/GateView'
          type: array
          title: Gates
        evidence:
          items:
            $ref: '#/components/schemas/EvidenceStat'
          type: array
          title: Evidence
        advisors:
          items:
            $ref: '#/components/schemas/AdvisorViewOut'
          type: array
          title: Advisors
        exits:
          anyOf:
            - items:
                $ref: '#/components/schemas/ExitRuleOut'
              type: array
            - type: 'null'
          title: Exits
        next_step:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Step
        launch_goal:
          anyOf:
            - type: string
            - type: 'null'
          title: Launch Goal
        launch_edge:
          items:
            type: string
          type: array
          title: Launch Edge
        forkable:
          type: boolean
          title: Forkable
      type: object
      required:
        - run_id
        - status
        - gates
        - evidence
        - advisors
        - launch_edge
        - forkable
      title: ResearchRunDetail
      description: >-
        Full per-run dossier -- every field the list row's `ResearchRunSummary`

        omits. All fields nullable/optional where the corresponding stage may
        not

        have run yet.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    GateView:
      properties:
        key:
          type: string
          title: Key
        role:
          type: string
          title: Role
        mandate:
          type: string
          title: Mandate
        state:
          type: string
          title: State
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
        when:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: When
      type: object
      required:
        - key
        - role
        - mandate
        - state
      title: GateView
      description: |-
        One of the 4 team gates (researcher/developer/risk/cio), ALWAYS
        present regardless of how far the run progressed.
    EvidenceStat:
      properties:
        key:
          type: string
          title: Key
        value:
          type: string
          title: Value
        trend:
          anyOf:
            - type: string
            - type: 'null'
          title: Trend
      type: object
      required:
        - key
        - value
      title: EvidenceStat
    AdvisorViewOut:
      properties:
        lens:
          type: string
          title: Lens
        stance:
          type: string
          title: Stance
        concern:
          type: string
          title: Concern
        severity:
          type: string
          title: Severity
      type: object
      required:
        - lens
        - stance
        - concern
        - severity
      title: AdvisorViewOut
    ExitRuleOut:
      properties:
        rule:
          type: string
          title: Rule
        detail:
          type: string
          title: Detail
        val:
          type: string
          title: Val
      type: object
      required:
        - rule
        - detail
        - val
      title: ExitRuleOut
    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

````