HomeChatAlertsCalendarScreenerWatchlistsFiles
DocsSettings
Sign upJoinLog in

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

WebSocket

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

Live News

WSwss://socket.vantafin.com/v1/stocks
View as markdown

Subscribe to live news and press releases over the same WebSocket connection. Use channel N.{ticker} for a specific ticker (e.g. N.AAPL) or N.* for every article market-wide. Each message is pushed the moment a new article is ingested and carries the headline, body text, publisher, source site, canonical URL, publish time, and a newsType of either 'stockNews' or 'pressRelease'. Unlike the live-quote channels, the news stream runs around the clock - it is not gated to market hours.

Use cases

  • Real-time news terminals and breaking-headline tickers
  • Event-driven trading on press releases and market-moving news
  • Streaming a watchlist's headlines without polling the REST news API
  • Feeding NLP / sentiment pipelines as articles are published

Subscribe

Send a subscribe message after connecting. Use N.{ticker} (e.g. N.AAPL) for a single symbol or N.* for every symbol.

{
  "action": "subscribe",
  "params": "N.AAPL"
}

Message fields

FieldTypeDescription
typestringAlways 'news'.
tickerstringTicker the article is about.
newsTypestring'stockNews' or 'pressRelease'.
titlestringHeadline of the article.
textstringArticle body / snippet.
publisherstringPublisher name, e.g. 'Business Wire'.
sitestringSource domain, e.g. 'businesswire.com'.
urlstringCanonical URL of the article.
publishedDatestringPublish time in UTC (YYYY-MM-DD HH:MM:SS).
idstringStable article identifier (also used by the REST news API).
from vantafin import WebSocketClient

ws = WebSocketClient("vf-live-your_api_key")
ws.connect()
ws.subscribe(["N.AAPL"])

for message in ws:
    print(message)
{
  "type": "news",
  "ticker": "AAPL",
  "newsType": "pressRelease",
  "title": "Apple Announces Record June Quarter Results",
  "text": "Apple today announced financial results for its fiscal third quarter...",
  "publisher": "Business Wire",
  "site": "businesswire.com",
  "url": "https://www.businesswire.com/news/home/20260616/apple-q3-results",
  "publishedDate": "2026-06-16 12:30:00",
  "id": "a593d7c6618b5fb75641"
}
Live Quotes (Per Minute)
Live SEC Filings