> ## 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 all active monitor notifications

> Return all cards with active monitor notifications for the
current session.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/trade/notifications
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/trade/notifications:
    get:
      tags:
        - trade-cards
      summary: List all active monitor notifications
      description: |-
        Return all cards with active monitor notifications for the
        current session.
      operationId: list_notifications_api_graph_v1_trade_notifications_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActiveNotificationsResponse'
components:
  schemas:
    ActiveNotificationsResponse:
      properties:
        notifications:
          items:
            $ref: '#/components/schemas/MonitorNotificationResponse'
          type: array
          title: Notifications
        total:
          type: integer
          title: Total
          default: 0
      type: object
      title: ActiveNotificationsResponse
      description: List of cards with active monitor notifications.
    MonitorNotificationResponse:
      properties:
        card_id:
          type: string
          format: uuid
          title: Card Id
        has_notification:
          type: boolean
          title: Has Notification
          default: false
        notification:
          anyOf:
            - $ref: '#/components/schemas/MonitorNotification-Output'
            - type: 'null'
        notification_count:
          type: integer
          title: Notification Count
          default: 0
        last_notified_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Notified At
        rate_limited:
          type: boolean
          title: Rate Limited
          default: false
      type: object
      required:
        - card_id
      title: MonitorNotificationResponse
      description: Response for monitor notification endpoints.
    MonitorNotification-Output:
      properties:
        strategy_name:
          type: string
          title: Strategy Name
          description: Strategy that triggered
        symbol:
          type: string
          title: Symbol
          description: Instrument symbol
        trigger_rule:
          type: string
          title: Trigger Rule
          description: Which rule fired (e.g., 'entry_zone_hit')
        current_price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Current Price
          description: Price when trigger fired
        suggested_entry:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Suggested Entry
          description: Strategy's ideal entry price
        stop_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Stop Price
          description: Strategy's stop price
        target_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Target Price
          description: Strategy's primary target
        expected_risk_dollars:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Expected Risk Dollars
          description: Risk in dollars at suggested sizing
        regime:
          type: string
          title: Regime
          description: Current regime state
          default: ''
        fitness_score:
          anyOf:
            - type: integer
              maximum: 100
              minimum: 0
            - type: 'null'
          title: Fitness Score
          description: Current fitness 0-100
        correlation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Correlation Id
          description: Originating signal ID
        market_snapshot:
          anyOf:
            - $ref: '#/components/schemas/MarketSnapshot-Output'
            - type: 'null'
      type: object
      required:
        - strategy_name
        - symbol
        - trigger_rule
        - current_price
      title: MonitorNotification
      description: Notification payload fired when a Monitor card's trigger conditions hit.
    MarketSnapshot-Output:
      properties:
        ts:
          type: string
          format: date-time
          title: Ts
          description: Snapshot timestamp (matches AuditEntry.ts)
        bar_symbol:
          type: string
          title: Bar Symbol
          default: ''
        bar_open:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Bar Open
        bar_high:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Bar High
        bar_low:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Bar Low
        bar_close:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Bar Close
        bar_volume:
          anyOf:
            - type: integer
            - type: 'null'
          title: Bar Volume
        bar_vwap:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Bar Vwap
        quote_bid:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Quote Bid
        quote_ask:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Quote Ask
        quote_bid_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: Quote Bid Size
        quote_ask_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: Quote Ask Size
        indicators:
          additionalProperties:
            type: number
          type: object
          title: Indicators
        regime_dominant:
          type: string
          title: Regime Dominant
          default: ''
        regime_confidence:
          anyOf:
            - type: number
            - type: 'null'
          title: Regime Confidence
        signals:
          additionalProperties:
            type: number
          type: object
          title: Signals
        risk_day_dollars:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Risk Day Dollars
        risk_pct_cap:
          anyOf:
            - type: number
            - type: 'null'
          title: Risk Pct Cap
        risk_loss_remaining:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Risk Loss Remaining
      type: object
      required:
        - ts
      title: MarketSnapshot
      description: |-
        Frozen picture of the market state at the moment an agent made a
        decision. Required on audit entries where actor=agent and the action
        changes card state. See spec §4.5.

````