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

# Read Artifact Route



## OpenAPI

````yaml /api/openapi.json get /api/internal/regime/v2/artifacts/{artifact_type}/{artifact_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/artifacts/{artifact_type}/{artifact_id}:
    get:
      tags:
        - regime-vnext-internal
      summary: Read Artifact Route
      operationId: >-
        read_artifact_route_api_internal_regime_v2_artifacts__artifact_type___artifact_id__get
      parameters:
        - name: artifact_type
          in: path
          required: true
          schema:
            type: string
            enum:
              - snapshot
              - evidence
              - policy
              - manifest
            title: Artifact Type
        - name: artifact_id
          in: path
          required: true
          schema:
            type: string
            title: Artifact Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtifactEnvelope'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ArtifactEnvelope:
      properties:
        artifact_id:
          type: string
          title: Artifact Id
        artifact_type:
          type: string
          enum:
            - snapshot
            - evidence
            - policy
            - manifest
          title: Artifact Type
        created_at:
          type: string
          format: date-time
          title: Created At
        sha256:
          type: string
          title: Sha256
        payload:
          additionalProperties: true
          type: object
          title: Payload
        logic_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Logic Version
        feature_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Feature Version
        policy_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Policy Version
        policy_config_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Policy Config Version
        variant:
          anyOf:
            - type: string
            - type: 'null'
          title: Variant
        asset_scope:
          anyOf:
            - $ref: '#/components/schemas/AssetScope'
            - type: 'null'
        horizon_profile:
          anyOf:
            - $ref: '#/components/schemas/HorizonProfile'
            - type: 'null'
        run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Id
        provenance_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Provenance Summary
      additionalProperties: false
      type: object
      required:
        - artifact_id
        - artifact_type
        - created_at
        - sha256
        - payload
      title: ArtifactEnvelope
    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
    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

````