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

# List Research Runs

> List the caller's research_runs, most recent first (interop Inc 5.5).

Tenant-scoped: `store.list_runs_for_user` binds `user_id` in the SQL, so
another tenant's runs are never fetched, let alone returned.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/research-runs
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:
    get:
      tags:
        - research-runs
      summary: List Research Runs
      description: |-
        List the caller's research_runs, most recent first (interop Inc 5.5).

        Tenant-scoped: `store.list_runs_for_user` binds `user_id` in the SQL, so
        another tenant's runs are never fetched, let alone returned.
      operationId: list_research_runs_api_graph_v1_research_runs_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ResearchRunSummary'
                title: Response List Research Runs Api Graph V1 Research Runs Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResearchRunSummary:
      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
        verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Verdict
        regime:
          anyOf:
            - type: string
            - type: 'null'
          title: Regime
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        edge:
          anyOf:
            - type: string
            - type: 'null'
          title: Edge
        sharpe:
          anyOf:
            - type: number
            - type: 'null'
          title: Sharpe
        cagr:
          anyOf:
            - type: number
            - type: 'null'
          title: Cagr
        trades:
          anyOf:
            - type: integer
            - type: 'null'
          title: Trades
        forkable:
          type: boolean
          title: Forkable
      type: object
      required:
        - run_id
        - status
        - forkable
      title: ResearchRunSummary
      description: |-
        One row of the Fork picker's run list — mirrors `fork_from_run`'s
        (routes/strategies.py) spec-selection + forkability check, applied as a
        read-only probe.
    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

````