Quotes
Get Full Stock Quote(s)
Fetches the real-time full stock quote(s) for one or more comma-separated company stock symbols.
get/quotes/{symbol}
Path parameters
symbolstring required
One or more stock symbols of the companies, separated by commas (e.g., AAPL,MSFT,NVDA). Notation Guide:
- U.S. Stocks: All caps (e.g. AAPL)
- Intl. Stocks: All caps + "." + exchange (e.g. MC.PA, 9988.HK)
- Crypto: Ticker + "USD" (e.g. BTCUSD, DOGEUSD)
- Futures: Append "=F", all caps (e.g. ES=F, GC=F)
Response
Successful response with an array of full quote data objects (keys in kebab-case).
Example response
[
{
"symbol": "AAPL",
"name": "Apple Inc.",
"price": 196.935,
"changes-percentage": 1.3718,
"change": 2.665,
"day-low": 194.42,
"day-high": 198.8335,
"year-high": 260.1,
"year-low": 164.77,
"market-cap": 2958371946255.0005,
"price-avg50": 221.822,
"price-avg200": 228.1751,
"exchange": "NASDAQ",
"volume": 52164675,
"avg-volume": 61800181,
"open": 197.15,
"previous-close": 194.27,
"eps": 6.97,
"pe": 28.25,
"earnings-announcement": "2025-05-01T20:00:00.000+0000",
"shares-outstanding": 15022073000,
"timestamp": 1744920003
}
]