Roic AI RQL
  • Welcome
  • Roic Query Language
    • Getting Started
    • Query Builder
    • Query Structure
    • Ticker Syntax
    • Fields
    • Parameters
    • Options
  • Standalone Data Points
    • Company News
    • Earnings Call List
    • Earnings Call
Powered by GitBook
On this page
  • Request
  • Response

Was this helpful?

  1. Standalone Data Points

Company News

The endpoint retrieves company news based on the provided symbol and quantity, along with an API key for authentication.

Request

https://api.roic.ai/v1/company_news/?symbol=AAPL&quantity=10&apikey=API_KEY
Params

symbol

AAPL

quantity

10

apikey

API_KEY

Response

The response for this request can be documented as a JSON schema:

[
    {
        "symbol": "AAPL",
        "published_date": "2024-08-30T06:40:53+00:00",
        "title": "iPhone Success Is Key to Smartphone Future",
        "image_url": "https://cdn.snapi.dev/images/v1/o/n/aapl22-2479239-2617541.jpg",
        "site": "247wallst.com",
        "article_text": "24/7 Wall St. Insights Apple Inc. (NASDAQ: AAPL) is likely to lead a surge in global smartphone sales in the coming year.",
        "article_url": "https://247wallst.com/technology-3/2024/08/30/iphone-success-is-key-to-smartphone-future/"
    },
    {
        "symbol": "AAPL",
        "published_date": "2024-08-30T05:30:00+00:00",
        "title": "3 Stocks That Have Turned $6,000 Into More Than $1 Million in 20 Years",
        "image_url": "https://cdn.snapi.dev/images/v1/m/9/computer-electronic9-2617490.jpg",
        "site": "fool.com",
        "article_text": "These businesses have all increased their bottom lines at much faster rates than revenue. Acquisitions, new products, and shifts in strategies are some of the reasons these businesses have done so well.",
        "article_url": "https://www.fool.com/investing/2024/08/30/3-stocks-that-have-turned-6000-into-more-than-1-mi/"
    },
    ...
]
PreviousOptionsNextEarnings Call List

Last updated 9 months ago

Was this helpful?