HomeChatAlertsCalendarScreenerWatchlistsFiles
Docs
Sign upJoinLog inLogin

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

Overview
GETMarket NewsGETTicker News

WebSocket API

OverviewLive Quotes (Per Second)Live Quotes (Per Minute)Live NewsLive SEC FilingsTrading Halts

Ticker News

GET/v1/news/{ticker}
View as markdown

Retrieve news articles and press releases tagged to a specific ticker. Same article schema as market news but filtered to one company. Optionally filter with type=stockNews or type=pressRelease. Paginate with page and limit. Pair with quotes or profiles for a complete company snapshot page.

Use cases

  • Company-specific news feeds on security detail pages
  • Event-driven research after price moves
  • Alerting on material news for watchlist tickers
  • NLP pipelines scoped to one issuer

Input parameters

(*) Required

ParameterTypeDescription
ticker(*)stringTicker.
typestringFilter by article type: stockNews or pressRelease. Omit for both.
pageintegerZero-based page (default 0).
limitintegerPage size, 1-250 (default 50).

Output parameters

FieldTypeDescription
tickerstringTicker requested.
resultsarrayNews articles for this page.
results[].idstringArticle id.
results[].titlestringHeadline.
results[].publishedAtstringPublication time (ISO 8601).
results[].publisherstringPublisher name.
results[].urlstringArticle URL.
results[].tickersarrayRelated tickers.
totalintegerTotal articles for the ticker.
pageintegerZero-based page index.
from vantafin import RESTClient

client = RESTClient("vf-live-your_api_key")

result = client.get_ticker_news("AAPL", type="pressRelease", limit=50)

print(result)

Official SDKs (Python, JavaScript, Go, Java, Ruby): github.com/vantafin/vantafin

{
  "ticker": "AAPL",
  "results": [
    {
      "publishedAt": "2026-06-06 12:44:35",
      "publisher": "24/7 Wall Street",
      "title": "Not SpaceX: The Forgotten Satellite Stocks Quietly Plugging Into the Future of Space That Are Investible Today",
      "sourceDomain": "247wallst.com",
      "summary": "While Starlink soaks up every space headline, two publicly traded satellite operators have quietly turned niche networks into real businesses.",
      "url": "https://247wallst.com/investing/2026/06/06/not-spacex-the-forgotten-satellite-stocks-quietly-plugging-into-the-future-of-space-that-are-investible-today/",
      "articleType": "stockNews",
      "ticker": "AAPL",
      "id": "405b20baba513ae13c19"
    },
    {
      "publishedAt": "2026-06-06 11:30:00",
      "publisher": "Market Watch",
      "title": "Apple's WWDC will be a make-or-break moment for the company's fledgling AI strategy",
      "sourceDomain": "marketwatch.com",
      "summary": "Apple faces a high-stakes artificial-intelligence showcase next week when it hosts its Worldwide Developers Conference.",
      "url": "https://www.marketwatch.com/story/apples-wwdc-will-be-a-make-or-break-moment-for-the-companys-fledgling-ai-strategy-42086cc1",
      "articleType": "stockNews",
      "ticker": "AAPL",
      "id": "3e4f406c6919d2e6c1d4"
    }
  ],
  "total": 30890,
  "page": 0
}
Market News
List Tickers