> ## Documentation Index
> Fetch the complete documentation index at: https://finance.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get News

> Retrieves the latest financial news and market updates. Returns a list of news articles relevant to trading and market activities.



## OpenAPI

````yaml https://spec.speakeasy.com/aries/aries/aries-trading-platform-api-with-code-samples get /v1/news
openapi: 3.0.3
info:
  title: Aries Trading Platform API
  description: >-
    Complete API documentation for the Aries trading platform including user
    management, authentication, account management, order management, market
    data, and analytics
  contact:
    name: Aries Financial
    email: dev@aries.com
  version: 1.0.0
servers:
  - url: https://api.tradearies.dev
    description: Production server
security: []
tags:
  - name: Accounts
    description: Account management endpoints for positions, orders, and balances
  - name: Analytics
    description: >-
      Analytics endpoints for market data analysis including top gainers,
      losers, volume leaders, sector analysis, analyst ratings, market breadth,
      and net inflow
  - name: Authentication
    description: User authentication endpoints
  - name: Calendars
    description: Calendar endpoints for economic events and historical data
  - name: Market Data
    description: >-
      Market data endpoints for symbol search, real-time data access, and equity
      details
  - name: Orders
    description: >-
      Order management endpoints for placing, updating, canceling, and
      previewing orders
  - name: Users
    description: User management endpoints
  - name: Health
    description: Service health endpoints
paths:
  /v1/news:
    get:
      tags:
        - News
      summary: Get News
      description: >-
        Retrieves the latest financial news and market updates. Returns a list
        of news articles relevant to trading and market activities.
      operationId: GetNews
      parameters:
        - name: limit
          in: query
          description: Maximum number of news articles to return
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            example: 20
        - name: offset
          in: query
          description: Number of articles to skip for pagination
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            example: 0
        - name: symbols
          in: query
          description: Comma-separated list of stock symbols to filter news
          required: false
          schema:
            type: string
            example: AAPL,GOOGL,MSFT
        - name: category
          in: query
          description: News category filter
          required: false
          schema:
            type: string
            enum:
              - market
              - earnings
              - economy
              - technology
              - healthcare
              - energy
              - finance
            example: technology
        - name: from_date
          in: query
          description: Start date for news articles (ISO 8601 format)
          required: false
          schema:
            type: string
            format: date-time
            example: '2024-01-01T00:00:00Z'
        - name: to_date
          in: query
          description: End date for news articles (ISO 8601 format)
          required: false
          schema:
            type: string
            format: date-time
            example: '2024-12-31T23:59:59Z'
      responses:
        '200':
          description: News retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  articles:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique article identifier
                        title:
                          type: string
                          description: Article headline
                        summary:
                          type: string
                          description: Brief summary of the article
                        url:
                          type: string
                          format: uri
                          description: URL to the full article
                        source:
                          type: string
                          description: News source/publisher
                        author:
                          type: string
                          description: Article author
                        published_at:
                          type: string
                          format: date-time
                          description: Publication timestamp
                        symbols:
                          type: array
                          items:
                            type: string
                          description: Related stock symbols
                        category:
                          type: string
                          description: Article category
                        sentiment:
                          type: string
                          enum:
                            - positive
                            - neutral
                            - negative
                          description: Article sentiment analysis
                        image_url:
                          type: string
                          format: uri
                          description: Featured image URL
                  total:
                    type: integer
                    description: Total number of articles available
                  limit:
                    type: integer
                    description: Number of articles per page
                  offset:
                    type: integer
                    description: Current pagination offset
              example:
                articles:
                  - id: news_abc123
                    title: Apple Reports Record Q4 Earnings
                    summary: >-
                      Apple Inc. announced record-breaking fourth quarter
                      earnings, surpassing analyst expectations with strong
                      iPhone sales.
                    url: https://financialnews.com/apple-q4-earnings
                    source: Financial News Daily
                    author: John Smith
                    published_at: '2024-01-15T14:30:00Z'
                    symbols:
                      - AAPL
                    category: earnings
                    sentiment: positive
                    image_url: https://cdn.financialnews.com/apple-earnings.jpg
                  - id: news_def456
                    title: Tech Sector Shows Strong Growth
                    summary: >-
                      Major technology companies continue to demonstrate robust
                      growth amid market volatility.
                    url: https://financialnews.com/tech-sector-growth
                    source: Market Watch
                    author: Jane Doe
                    published_at: '2024-01-15T13:00:00Z'
                    symbols:
                      - AAPL
                      - GOOGL
                      - MSFT
                      - NVDA
                    category: technology
                    sentiment: positive
                    image_url: https://cdn.marketwatch.com/tech-growth.jpg
                total: 150
                limit: 20
                offset: 0
        '400':
          description: Bad request - invalid parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Invalid parameters
                codes:
                  - code: INVALID_SYMBOL
                    field: symbols
                    description: One or more symbols are invalid
        '401':
          description: Unauthorized - invalid or missing authentication token
        '500':
          description: Internal server error
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: python
          label: Python (SDK)
          source: |-
            from finance_dev import FinanceDev, models
            import os


            with FinanceDev(
                security=models.Security(
                    client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
                    client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
                ),
            ) as fd_client:

                res = fd_client.news.get_news(symbols="AAPL,GOOGL,MSFT", topics="earnings,guidance")

                # Handle response
                print(res)
        - lang: java
          label: Java (SDK)
          source: |-
            package hello.world;

            import java.lang.Exception;
            import java.time.OffsetDateTime;
            import org.openapis.openapi.AriesJava;
            import org.openapis.openapi.models.errors.ErrorResponse;
            import org.openapis.openapi.models.operations.*;

            public class Application {

                public static void main(String[] args) throws ErrorResponse, Exception {

                    AriesJava sdk = AriesJava.builder()
                            .bearerAuth(System.getenv().getOrDefault("BEARER_AUTH", ""))
                        .build();

                    GetNewsRequest req = GetNewsRequest.builder()
                            .symbols("AAPL,GOOGL,MSFT")
                            .category(Category.TECHNOLOGY)
                            .fromDate(OffsetDateTime.parse("2024-01-01T00:00:00Z"))
                            .toDate(OffsetDateTime.parse("2024-12-31T23:59:59Z"))
                            .build();

                    GetNewsResponse res = sdk.news().get()
                            .request(req)
                            .call();

                    if (res.object().isPresent()) {
                        // handle response
                    }
                }
            }
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Error message
        codes:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: Error code
              description:
                type: string
                description: Error description
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````