> ## 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 Snipe List

> List user's snipe list with live graph data.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/snipe-list
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/snipe-list:
    get:
      tags:
        - Snipe List
      summary: Get Snipe List
      description: List user's snipe list with live graph data.
      operationId: get_snipe_list_api_graph_v1_snipe_list_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SnipeListResponse'
components:
  schemas:
    SnipeListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/SnipeListItem'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        max_allowed:
          type: integer
          title: Max Allowed
        alert_count:
          type: integer
          title: Alert Count
          default: 0
        source:
          type: string
          title: Source
          default: realtime_sip
      type: object
      required:
        - items
        - total
        - max_allowed
      title: SnipeListResponse
    SnipeListItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        symbol:
          type: string
          title: Symbol
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
        status:
          type: string
          title: Status
          default: watching
        alert_prefs:
          additionalProperties: true
          type: object
          title: Alert Prefs
        added_at:
          type: string
          format: date-time
          title: Added At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        added_bull:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Bull
        added_bear:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Bear
        added_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Net
        added_verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Added Verdict
        added_gates:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Added Gates
        last_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Last Price
        change_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Change Pct
        bullish_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Confluence
        bearish_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Confluence
        net_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Net Confluence
        directional_bias:
          anyOf:
            - type: string
            - type: 'null'
          title: Directional Bias
        conviction_max_v5:
          anyOf:
            - type: number
            - type: 'null'
          title: Conviction Max V5
          description: Max of bull/bear v5 confluence (unsigned 0-100)
        conflict_min_v5:
          anyOf:
            - type: number
            - type: 'null'
          title: Conflict Min V5
          description: Min of bull/bear v5 confluence (unsigned 0-100)
        directional_bias_v5:
          anyOf:
            - type: string
            - type: 'null'
          title: Directional Bias V5
          description: Directional bias from v5 scoring
        patterns:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Patterns
        verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Verdict
        all_quality_gates_passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: All Quality Gates Passed
        data_as_of:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Data As Of
        added_pulse_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Pulse Net
        pulse_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Pulse Net
        pulse_delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Pulse Delta
        confluence_delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Confluence Delta
        unack_alert_count:
          type: integer
          title: Unack Alert Count
          default: 0
      type: object
      required:
        - id
        - symbol
        - added_at
        - updated_at
      title: SnipeListItem

````