v1

latestOpenAPI 3.1.0raw.githubusercontent.com2025-04-25361217.6 KB
News

Get Stock News

Fetches recent news articles for a given company stock symbol or multiple symbols.

get/news/stock/{symbol}

Path parameters

symbolstring required

One or more stock symbols of the companies, separated by commas (e.g., AAPL,MSFT).

Query parameters

pageinteger

The page number for pagination (if supported by the provider).

limitinteger

The maximum number of news articles to return (e.g., 50).

Response

Successful response with an array of news articles.

symbolstring
published-datestring date-time
titlestring
sitestring
textstring
urlstring url

Example response

[
  {
    "symbol": "AAPL",
    "published-date": "2025-04-20 09:15:00",
    "title": "Selling America, Buying Europe - My Picks",
    "site": "seekingalpha.com",
    "text": "After years of strong returns, amidst the tariff-induced uncertainty, I am rotating towards European-based equities. US economy is facing mounting pressures, via weakening consumer demand, reduced CAPEX spending, inflation, and rising recession odds. European equities are relatively cheap, and despite structural issues, pockets of opportunities exist in high-growth areas and via re-arming Europe initiative.",
    "url": "https://seekingalpha.com/article/4776258-selling-america-buying-europe-my-picks"
  }
]