get_assets_news
Returns recent news articles for tickers, aggregated from many news sites, each with a sentiment tag and source URL (headlines only — no article body). For general/market TipRanks news without a specific ticker, or for an article excerpt, use get_latest_news.
This tool serves the CURRENT news window only: it returns each ticker's most
recent articles, and from_date just trims that recent set. For news from a
specific past date range, use get_latest_news with from_date + to_date,
which searches the full archive.
Args:
tickers: Comma-separated ticker symbols
count: Number of articles to return (default 10)
from_date: Optional 'YYYY-MM-DD' recency floor (filtered on `date`).
Returns JSON: {"assetNewsArticles": [...]}. Each entry:
- ticker, companyName
- sentiment: bucketed signal — one of "VeryPositive", "Positive",
"Neutral", "Negative", "VeryNegative". Derived from TipRanks
news-sentiment classifier on the article text.
- siteName, url, title
- date, addedOn, publishTime, articleTimestamp: redundant date
fields. addedOn is when TipRanks ingested it; publishTime is
the source's stated publication time. Prefer publishTime.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| tickers | Yes | ||
| from_date | No | Optional recency floor 'YYYY-MM-DD', applied to the recent articles this tool returns. It cannot pull older news into range — for a past date window use get_latest_news with from_date + to_date. |