HomeChatAlertsCalendarScreenerWatchlistsFiles
DocsSettings
Sign upJoinLog in

Docs

Overview

IntroductionMCP ServerOpenAPI Spec

REST API

GETQuoteGETBatch Quotes

WebSocket

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

Quote

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

Retrieve the latest stored market snapshot for one US equity or ETF ticker. The response includes last price, percent and dollar change, volume, day high and low, open, previous close, market capitalization and shares outstanding where available. Quotes refresh about every second for live-data tickers; use this for dashboards, alerts and any screen that needs a single live price.

Use cases

  • Live price tiles and watchlist rows
  • Valuation inputs (price × shares for market cap checks)
  • Day-range and volume context on security detail pages
  • Alerting on price or percent change

Input parameters

(*) Required

ParameterTypeDescription
ticker(*)stringTicker.

Output parameters

FieldTypeDescription
tickerstringTicker.
pricefloatLast trade or official close price.
changefloatDollar change vs previous close.
change_percentagefloatPercent change vs previous close.
volumeintegerSession volume (shares).
day_lowfloatSession low price.
day_highfloatSession high price.
openfloatSession open price.
previous_closefloatPrevious session close.
market_capfloatMarket capitalization in USD when available.
sharesintegerShares outstanding when available.
updated_atstringQuote timestamp (ISO 8601).
from vantafin import RESTClient

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

result = client.get_quote("AAPL")

print(result)
{
  "ticker": "AAPL",
  "price": 296.13,
  "change": -19.07,
  "change_percentage": -6.05,
  "volume": 102120.14,
  "day_low": null,
  "day_high": null,
  "open": null,
  "previous_close": 315.2,
  "market_cap": 4356284921340,
  "shares": 14687356000,
  "updated_at": "2026-06-16T09:53:14.094641+00:00"
}
Company Profile (Search)
Batch Quotes