> ## 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 individual news articles for a symbol

> Get individual news articles with per-article metadata.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/news/articles/{symbol}
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/articles/{symbol}:
    get:
      tags:
        - News
      summary: Get individual news articles for a symbol
      description: Get individual news articles with per-article metadata.
      operationId: get_news_articles_api_graph_v1_news_articles__symbol__get
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
        - name: days
          in: query
          required: false
          schema:
            type: integer
            maximum: 90
            minimum: 1
            description: Days of articles to fetch
            default: 7
            title: Days
          description: Days of articles to fetch
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Max articles to return
            default: 20
            title: Limit
          description: Max articles to return
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NewsArticlesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    NewsArticlesResponse:
      properties:
        symbol:
          type: string
          title: Symbol
        articles:
          items:
            $ref: '#/components/schemas/NewsArticleItem'
          type: array
          title: Articles
        total:
          type: integer
          title: Total
      type: object
      required:
        - symbol
        - articles
        - total
      title: NewsArticlesResponse
      description: News articles for a symbol.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NewsArticleItem:
      properties:
        headline:
          type: string
          title: Headline
          description: Article headline
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
          description: Article URL
        source:
          anyOf:
            - type: string
            - type: 'null'
          title: Source
          description: Publisher name
        published_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Published At
          description: Publication timestamp ISO
        sentiment_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Sentiment Score
          description: Sentiment score 0-100
        sentiment_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Sentiment Label
          description: Sentiment label
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
          description: Article category
        relevance_score:
          anyOf:
            - type: number
            - type: 'null'
          title: Relevance Score
          description: Relevance 0-1
        impact_estimate:
          anyOf:
            - type: string
            - type: 'null'
          title: Impact Estimate
          description: 'Impact level: high/medium/low'
        sentiment_confidence:
          anyOf:
            - type: number
            - type: 'null'
          title: Sentiment Confidence
          description: Confidence 0-1
        key_topics:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Key Topics
          description: Key topics extracted
        catalyst_ids:
          items:
            type: string
          type: array
          title: Catalyst Ids
          description: Taxonomy catalyst IDs
        risk_ids:
          items:
            type: string
          type: array
          title: Risk Ids
          description: Taxonomy risk IDs
        taxonomy_sectors:
          items:
            type: string
          type: array
          title: Taxonomy Sectors
          description: Affected sectors
      type: object
      required:
        - headline
      title: NewsArticleItem
      description: Individual news article.
    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

````