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

# Unified cross-symbol news feed

> Cross-symbol news feed sorted by signal priority. Enriched with taxonomy tags.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/news/feed
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/news/feed:
    get:
      tags:
        - News
      summary: Unified cross-symbol news feed
      description: >-
        Cross-symbol news feed sorted by signal priority. Enriched with taxonomy
        tags.
      operationId: get_news_feed_api_graph_v1_news_feed_get
      parameters:
        - name: hours
          in: query
          required: false
          schema:
            type: integer
            maximum: 168
            minimum: 1
            description: Lookback hours
            default: 24
            title: Hours
          description: Lookback hours
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Max articles
            default: 50
            title: Limit
          description: Max articles
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
        - name: impact
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter: high, medium, low (comma-sep)'
            title: Impact
          description: 'Filter: high, medium, low (comma-sep)'
        - name: sentiment
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter: positive, negative, neutral'
            title: Sentiment
          description: 'Filter: positive, negative, neutral'
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category (comma-sep)
            title: Category
          description: Filter by category (comma-sep)
        - name: symbol
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by symbol (comma-sep)
            title: Symbol
          description: Filter by symbol (comma-sep)
        - name: symbols
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by symbols (comma-sep)
            title: Symbols
          description: Filter by symbols (comma-sep)
        - name: sector
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by sector
            title: Sector
          description: Filter by sector
        - name: catalyst_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by catalyst ID (comma-sep)
            title: Catalyst Id
          description: Filter by catalyst ID (comma-sep)
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: 'Sort: signal, time, symbol'
            default: signal
            title: Sort
          description: 'Sort: signal, time, symbol'
        - name: group_by
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Grouping: ''cluster'' for clustered view'
            title: Group By
          description: 'Grouping: ''cluster'' for clustered view'
        - name: preset
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Apply a named preset
            title: Preset
          description: Apply a named preset
        - name: include_noise
          in: query
          required: false
          schema:
            type: boolean
            description: Include noise-marked articles
            default: false
            title: Include Noise
          description: Include noise-marked articles
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Get News Feed Api Graph V1 News Feed Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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

````